Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --secondary: #a8a4e6;
+ --background: #f0f3f9;
+ --text: #2d3436;
+ --glass: rgba(255, 255, 255, 0.7);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .glass-panel {
+ background: var(--glass);
+ backdrop-filter: blur(10px);
+ border-radius: 15px;
+ padding: 2rem;
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
+ margin: 2rem auto;
+ max-width: 1200px;
+ width: 95%;
+ }
+
+ header {
+ background: var(--glass);
+ backdrop-filter: blur(10px);
+ padding: 1rem;
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links a {
+ color: var(--text);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ .stat-card {
+ background: white;
+ padding: 1rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .stat-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .search-container {
+ display: flex;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ input {
+ flex: 1;
+ padding: 0.8rem;
+ border: 2px solid var(--secondary);
+ border-radius: 8px;
+ font-size: 1rem;
+ }
+
+ button {
+ background: var(--primary);
+ color: white;
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: 8px;
+ cursor: pointer;
+ transition: background 0.3s;
+ }
+
+ button:hover {
+ background: var(--secondary);
+ }
+
+ .table-container {
+ overflow-x: auto;
+ margin-top: 1rem;
+ }
+
+ table {
+ width: 100%;
+ border-collapse: collapse;
+ }
+
+ th, td {
+ padding: 1rem;
+ text-align: left;
+ border-bottom: 1px solid var(--secondary);
+ }
+
+ th {
+ background: var(--primary);
+ color: white;
+ }
+
+ tr:hover {
+ background: rgba(108, 92, 231, 0.1);
+ }
+
+ footer {
+ background: var(--glass);
+ backdrop-filter: blur(10px);
+ padding: 2rem;
+ text-align: center;
+ margin-top: 2rem;
+ }
+
+ footer nav {
+ margin-top: 1rem;
+ justify-content: center;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .stats-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .search-container {
+ flex-direction: column;
+ }
+
+ th, td {
+ padding: 0.5rem;
+ }
+ }