:root {
  --primary: #6366f1;
  --primary-light: #a5b4fc;
  --primary-dark: #4f46e5;
  --bg: #eef1ff;
  --card-bg: #ffffff;
  --text-main: #1e1b4b;
  --text-muted: #6b7280;
  --border: #d1d5db;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

.header {
  text-align: center;
  padding: 2rem 1rem;
}

.title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.subtitle {
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-size: 1rem;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

.top-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
}

.top-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: 0.7rem;
  background: var(--primary-light);
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

tr:hover {
  background: #f5f7ff;
}

.pagination {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.page-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-light);
  background: white;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: 0.2s;
}

.page-btn:hover {
  background: var(--primary-light);
  color: white;
}

.page-btn.active {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.page-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.45);
  transform: translateY(-3px);
}

