/* ========== CSS VARIABLES & THEME ========== */
:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #252525;
  --bg-navbar: rgba(15, 15, 15, 0.9);
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent-primary: #8b5cf6;
  --accent-secondary: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  --border-color: #333333;
  --border-hover: #555555;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-hover: 0 12px 40px rgba(139, 92, 246, 0.15);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

[data-theme="light"] {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e9ecef;
  --bg-navbar: rgba(255, 255, 255, 0.92);
  --text-primary: #1a1a1a;
  --text-secondary: #495057;
  --text-muted: #868e96;
  --accent-primary: #7c3aed;
  --accent-secondary: #2563eb;
  --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  --border-color: #dee2e6;
  --border-hover: #adb5bd;
  --success: #059669;
  --danger: #dc2626;
  --warning: #d97706;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(124, 58, 237, 0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
}

/* ========== GLOBAL STYLES ========== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ========== GRADIENT TEXT ========== */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== BUTTONS ========== */
.btn-gradient {
  background: var(--accent-gradient);
  color: white !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(139,92,246,0.3); color: white !important; }

.btn-outline {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--accent-primary); color: var(--accent-primary); }

/* ========== NAVBAR ========== */
.navbar-custom {
  background: var(--bg-navbar) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: background-color 0.4s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
}

.search-input {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 9999px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  width: 320px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.search-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.search-input::placeholder { color: var(--text-muted); }

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.theme-toggle:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

/* ========== HERO SECTION ========== */
.hero-section {
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: floatOrb 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  top: -50px; right: -100px;
  animation: floatOrb 25s ease-in-out infinite 2s;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  bottom: 0; left: 20%;
  animation: floatOrb 18s ease-in-out infinite 4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

.hero-content { position: relative; z-index: 1; }

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* ========== FILTER PILLS ========== */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-pill {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.filter-pill.active {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.service-card:active { transform: scale(0.98); }

.card-image-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .card-image-wrap img { transform: scale(1.05); }

.card-badge-featured {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.card-badge-status {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.card-badge-status.active { background: rgba(16,185,129,0.85); color: white; }
.card-badge-status.inactive { background: rgba(107,114,128,0.85); color: white; }

.card-body-custom {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  display: inline-block;
  background: rgba(139,92,246,0.15);
  color: var(--accent-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-footer-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

.card-price {
  font-weight: 600;
  color: var(--accent-primary);
  font-size: 0.9375rem;
  white-space: nowrap;
}
.card-price.free { color: var(--success); }

.card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ========== SKELETON LOADING ========== */
.skeleton-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.skeleton-img {
  height: 200px;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}
.skeleton-body { padding: 20px; }
.skeleton-line {
  height: 16px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.skeleton-line.short { width: 60%; }
.skeleton-line.title { width: 80%; height: 20px; }
.skeleton-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
}
[data-theme="light"] .skeleton-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.04) 50%, transparent 100%);
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state i {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.empty-state h3 { color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); }

/* ========== MODAL ========== */
.modal-content-custom {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
}
.modal-header-custom {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px;
}
.modal-body-custom { padding: 0; }
.modal-footer-custom {
  border-top: 1px solid var(--border-color);
  padding: 16px 24px;
}
.modal-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
.modal-content-body { padding: 28px; }
.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.modal-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.modal-stat i { color: var(--accent-primary); }

/* ========== TOAST ========== */
.toast-container-custom {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast-custom {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  animation: toastIn 0.3s ease forwards;
  color: var(--text-primary);
}
.toast-custom.toast-out { animation: toastOut 0.3s ease forwards; }
.toast-custom.success i { color: var(--success); }
.toast-custom.error i { color: var(--danger); }
.toast-custom.info i { color: var(--accent-primary); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.site-footer p {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin: 0;
}

/* ========== ADMIN LOGIN ========== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.login-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
.login-card .lock-icon {
  font-size: 48px;
  color: var(--accent-primary);
}
.form-input-custom {
  height: 48px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 0 16px;
  width: 100%;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.form-input-custom:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.form-input-custom::placeholder { color: var(--text-muted); }

/* ========== ADMIN DASHBOARD ========== */
.admin-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s ease;
}
.admin-sidebar-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-nav {
  flex: 1;
  padding: 8px 0;
  list-style: none;
  margin: 0;
}
.admin-nav-item {
  padding: 12px 20px;
  margin: 4px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.admin-nav-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  text-decoration: none;
}
.admin-nav-item.active {
  background: rgba(139,92,246,0.15);
  color: var(--accent-primary);
}
.admin-nav-item.active i { color: var(--accent-primary); }
.admin-nav-item i {
  width: 20px;
  text-align: center;
  color: var(--text-muted);
}
.admin-sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}
.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  padding: 24px;
  transition: margin-left 0.3s ease;
}

/* Stat cards */
.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.2s ease;
}
.stat-card:hover { border-color: var(--accent-primary); }
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Admin table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table thead th {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.admin-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.875rem;
}
.admin-table tbody tr:hover {
  background: rgba(139,92,246,0.05);
}
.table-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.status-badge:hover { opacity: 0.8; }
.status-badge.active { background: rgba(16,185,129,0.2); color: var(--success); }
.status-badge.inactive { background: rgba(107,114,128,0.2); color: var(--text-muted); }

.featured-star {
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}
.featured-star.active { color: var(--warning); }
.featured-star:not(.active) { color: var(--text-muted); }
.featured-star:hover { color: var(--warning); }

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
}
.action-btn:hover { background: rgba(139,92,246,0.15); color: var(--accent-primary); }
.action-btn.delete:hover { background: rgba(239,68,68,0.15); color: var(--danger); }

/* Pagination */
.pagination-custom {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-custom li a,
.pagination-custom li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  text-decoration: none;
  padding: 0 10px;
}
.pagination-custom li a:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}
.pagination-custom li.active a {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
}
.pagination-custom li.disabled span {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========== FORM ========== */
.form-label-custom {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  padding: 12px 16px;
}
.upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-tertiary);
}
.upload-zone:hover {
  border-color: var(--accent-primary);
  background: rgba(139,92,246,0.05);
}
.upload-zone.dragover {
  border-color: var(--accent-primary);
  background: rgba(139,92,246,0.1);
  transform: scale(1.01);
}
.upload-zone i {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  background: var(--bg-tertiary);
}
.custom-checkbox:checked {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}
.custom-checkbox:checked::after {
  content: '\\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Danger zone */
.danger-zone {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(239,68,68,0.3);
}
.btn-danger-outline {
  background: transparent;
  border: 1px solid var(--danger);
  color: var(--danger);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.btn-danger-outline:hover {
  background: var(--danger);
  color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .hero-title { font-size: 2rem; }
  .search-input { width: 280px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stat-sep { display: none; }
  .search-input { width: 100%; }
  .login-card { padding: 28px; margin: 16px; }
  .stat-card { padding: 16px; }
  .modal-content-custom { margin: 16px; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stagger-1 { animation-delay: 0.08s; opacity: 0; }
.stagger-2 { animation-delay: 0.16s; opacity: 0; }
.stagger-3 { animation-delay: 0.24s; opacity: 0; }
.stagger-4 { animation-delay: 0.32s; opacity: 0; }
.stagger-5 { animation-delay: 0.40s; opacity: 0; }
.stagger-6 { animation-delay: 0.48s; opacity: 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

/* Selection */
::selection {
  background: rgba(139,92,246,0.3);
  color: var(--text-primary);
}

/* Section title */
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.count-badge {
  background: rgba(139,92,246,0.15);
  color: var(--accent-primary);
  border-radius: 9999px;
  padding: 4px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Admin page header */
.page-header {
  margin-bottom: 32px;
}
.page-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.page-header p {
  color: var(--text-secondary);
  margin: 8px 0 0;
}

/* Progress bar for top clicked */
.progress-bar-custom {
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.progress-bar-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Quick action buttons */
.quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
