/* ================================================
   ENDOAGE - Global Styles (Branded Version)
   Production-Ready Medical Platform UI
   ================================================ */

/* =====================================
   Font Face Declarations
   ===================================== */
@font-face {
  font-family: 'PT Serif';
  src: url('../fonts/PTSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PT Serif';
  src: url('../fonts/PTSerif-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'PT Serif';
  src: url('../fonts/PTSerif-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'PT Serif';
  src: url('../fonts/PTSerif-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* =====================================
   CSS Variables - ENDOAGE Brand
   ===================================== */
:root {
  /* Brand Colors - From Guidelines */
  --primary-gold: #c28a31;
  --primary-brown: #523204;
  --black: #000000;
  --white: #ffffff;
  
  /* Complementary Colors */
  --gray: #7d7d7d;
  --light-beige: #febe5b;
  --cream: #fff8e1;
  --green: #556b2f;
  --orange: #d2691e;
  --light-pink: #eed9c4;
  --navy: #283361;
  --dusty-rose: #c08081;
  --tan: #f7e7ce;
  
  /* Semantic Colors */
  --success: #556b2f;
  --success-light: #f0f4e8;
  --warning: #d2691e;
  --warning-light: #fff4e5;
  --error: #c08081;
  --error-light: #fdeef1;
  --info: #283361;
  --info-light: #ebf4fb;
  
  /* Typography - PT Serif + Arial */
  --font-display: 'PT Serif', 'Georgia', serif;
  --font-body: 'Arial', 'Helvetica', sans-serif;
  --font-body-bold: 'Arial Bold', 'Helvetica Bold', sans-serif;
  
  /* Font Sizes - 8pt Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Spacing - 8pt System */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  
  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(82, 50, 4, 0.15);
  --shadow-xl: 0 20px 50px rgba(82, 50, 4, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================
   Base Resets & Typography
   ===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-brown);
  margin-bottom: var(--space-2);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-2);
  color: var(--black);
  line-height: 1.7;
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-brown);
}

/* =====================================
   Buttons
   ===================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 14px 28px;
  font-family: var(--font-body-bold);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(194, 138, 49, 0.3);
}

.btn-primary:hover {
  background: var(--primary-brown);
  box-shadow: 0 4px 16px rgba(82, 50, 4, 0.4);
  transform: translateY(-1px);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary-brown);
  border: 2px solid var(--primary-brown);
}

.btn-outline:hover {
  background: var(--primary-brown);
  color: var(--white);
  text-decoration: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
  min-height: 36px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-lg);
  min-height: 52px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =====================================
   Cards
   ===================================== */
.card-custom {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream);
  transition: all var(--transition-base);
}

.card-custom:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-header-custom {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--cream);
  margin-bottom: var(--space-3);
}

.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary-brown);
  margin: 0;
}

/* =====================================
   Form Controls
   ===================================== */
.form-control-custom {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  min-height: 44px;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(194, 138, 49, 0.1);
}

.form-label-custom {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: var(--space-1);
}

.form-error {
  font-size: var(--text-sm);
  color: var(--error);
  margin-top: var(--space-1);
  display: none;
}

.form-control-custom.is-invalid {
  border-color: var(--error);
}

.form-control-custom.is-invalid ~ .form-error {
  display: block;
}

/* =====================================
   Badges
   ===================================== */
.badge-custom {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: var(--success-light);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-light);
  color: var(--warning);
}

.badge-info {
  background: var(--info-light);
  color: var(--info);
}

.badge-error {
  background: var(--error-light);
  color: var(--error);
}

/* =====================================
   Avatars
   ===================================== */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary-gold);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  overflow: hidden;
}

.avatar-sm { width: 32px; height: 32px; font-size: var(--text-xs); }
.avatar-lg { width: 56px; height: 56px; font-size: var(--text-lg); }
.avatar-xl { width: 80px; height: 80px; font-size: var(--text-2xl); }

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================
   Progress Bar
   ===================================== */
.progress-custom {
  width: 100%;
  height: 8px;
  background: var(--cream);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-custom {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-brown));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

/* =====================================
   Alerts
   ===================================== */
.alert-custom {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.alert-success {
  background: var(--success-light);
  color: var(--success);
  border-left: 4px solid var(--success);
}

.alert-warning {
  background: var(--warning-light);
  color: var(--warning);
  border-left: 4px solid var(--warning);
}

.alert-error {
  background: var(--error-light);
  color: var(--error);
  border-left: 4px solid var(--error);
}

.alert-info {
  background: var(--info-light);
  color: var(--info);
  border-left: 4px solid var(--info);
}

/* =====================================
   Animations
   ===================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn var(--transition-base) ease-out;
}

.slide-up {
  animation: slideUp var(--transition-slow) ease-out;
}

.slide-down {
  animation: slideDown var(--transition-slow) ease-out;
}

.scale-in {
  animation: scaleIn var(--transition-base) ease-out;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* =====================================
   Utility Classes
   ===================================== */
.animate-on-scroll {
  opacity: 1;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--cream);
  margin: var(--space-4) 0;
}

/* =====================================
   Responsive Typography
   ===================================== */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
  }
  
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

/* =====================================
   Accessibility
   ===================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* =====================================
   Enhanced Dashboard Styles
   ===================================== */
.card-custom, .card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid var(--cream) !important;
}

.card-custom:hover, .card:hover {
  box-shadow: 0 4px 16px rgba(194, 138, 49, 0.2) !important;
}

.top-bar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid var(--cream) !important;
}

.stat-card, .metric-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border: 2px solid var(--cream) !important;
  transition: all var(--transition-base);
}

.stat-card:hover, .metric-card:hover {
  box-shadow: 0 6px 20px rgba(194, 138, 49, 0.25) !important;
  border-color: var(--primary-gold) !important;
  transform: translateY(-2px);
}

.schedule-item, .patient-row, .appointment-card {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid var(--cream) !important;
  transition: all var(--transition-fast);
}

.schedule-item:hover, .patient-row:hover, .appointment-card:hover {
  box-shadow: 0 4px 12px rgba(194, 138, 49, 0.15) !important;
  border-color: var(--primary-gold) !important;
  background: rgba(255, 248, 225, 0.3);
}

.sidebar {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05) !important;
  border-right: 1px solid var(--cream) !important;
}

.table {
  border: 1px solid var(--cream) !important;
}

.table thead th {
  border-bottom: 2px solid var(--primary-gold) !important;
  background: rgba(255, 248, 225, 0.5);
}

.table tbody tr {
  border-bottom: 1px solid var(--cream) !important;
}

.table tbody tr:hover {
  background: rgba(255, 248, 225, 0.3);
}

/* =====================================
   COMPLETE LAYOUT SYSTEM
   ===================================== */

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: white;
  border-right: 1px solid var(--cream);
  overflow-y: auto;
  z-index: 1000;
}

.sidebar-header {
  padding: var(--space-4);
  border-bottom: 1px solid var(--cream);
  text-align: center;
}

.sidebar-nav {
  padding: var(--space-2);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: var(--gray);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  margin-bottom: 4px;
}

.sidebar-link i {
  font-size: 1.25rem;
  width: 24px;
}

.sidebar-link:hover {
  background: var(--cream);
  color: var(--primary-brown);
}

.sidebar-link.active {
  background: linear-gradient(135deg, var(--primary-brown), var(--primary-gold));
  color: white;
}

.sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2);
  border-top: 1px solid var(--cream);
  background: white;
}

/* Main Content */
.main-content {
  margin-left: 260px;
  min-height: 100vh;
  background: #f5f5f5;
}

.top-bar {
  background: white;
  padding: var(--space-4);
  border-bottom: 1px solid var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}

.content-area {
  padding: var(--space-4);
}

/* Cards */
.card-custom {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--cream);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-header-custom {
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-3);
  border-bottom: 1px solid var(--cream);
}

/* Stat Cards */
.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 2px solid var(--cream);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(194, 138, 49, 0.2);
  border-color: var(--primary-gold);
}

/* Schedule & Appointment Items */
.schedule-item,
.appointment-card {
  background: white;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream);
  transition: all 0.2s;
}

.schedule-item:hover,
.appointment-card:hover {
  background: rgba(255, 248, 225, 0.3);
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px rgba(194, 138, 49, 0.15);
}

/* Avatar */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  background: var(--gray);
  font-size: 0.875rem;
}

.avatar-sm {
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
}

.avatar-lg {
  width: 56px;
  height: 56px;
  font-size: 1.125rem;
}

.avatar-xl {
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
}

/* Badges */
.badge-custom {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: var(--success-light);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-light);
  color: var(--warning);
}

.badge-info {
  background: var(--info-light);
  color: var(--info);
}

.badge-secondary {
  background: #f0f0f0;
  color: var(--gray);
}

/* Progress Bars */
.progress-custom {
  height: 8px;
  background: var(--cream);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-custom {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-brown), var(--primary-gold));
  transition: width 0.3s;
}

/* Form Controls */
.form-control-custom,
.form-label-custom {
  display: block;
  width: 100%;
}

.form-label-custom {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-brown);
  font-size: 0.875rem;
}

.form-control-custom {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.2s;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(194, 138, 49, 0.1);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #c28a31, #e0a64d);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 138, 49, 0.3);
  background: linear-gradient(135deg, #d39a42, #e0a64d);
}

.btn-outline {
  background: white;
  color: var(--primary-brown);
  border: 2px solid var(--primary-gold);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  background: var(--cream);
}

.btn-secondary {
  background: var(--gray);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--cream);
  margin: var(--space-3) 0;
}

/* Utility */
.text-muted {
  color: var(--gray) !important;
}

.small {
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .main-content {
    margin-left: 0;
  }
}

/* =====================================
   ENHANCED TABLE STYLES WITH PAGINATION
   ===================================== */

.table-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-gold);
  overflow: hidden;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3);
  border-bottom: 2px solid var(--primary-gold);
  background: var(--cream);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.search-box {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  max-width: 400px;
}

.search-box input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 3px rgba(194, 138, 49, 0.1);
}

.table-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.table {
  width: 100%;
  margin: 0;
  border: none !important;
}

.table thead th {
  background: var(--cream);
  border-bottom: 2px solid var(--primary-gold) !important;
  padding: 1rem;
  font-weight: 700;
  color: var(--primary-brown);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--cream) !important;
}

.table tbody tr {
  transition: background 0.2s;
}

.table tbody tr:hover {
  background: rgba(255, 248, 225, 0.5);
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3);
  border-top: 2px solid var(--primary-gold);
  background: var(--cream);
}

.pagination {
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--primary-gold);
  background: white;
  color: var(--primary-brown);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.pagination .page-link:hover {
  background: var(--primary-gold);
  color: white;
}

.pagination .page-item.active .page-link {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}

.pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Enhanced Card Borders */
.card-custom {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

/* Filter Chips */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover {
  background: var(--primary-gold);
  color: white;
}

.filter-chip.active {
  background: var(--primary-gold);
  color: white;
}

/* Modal Styles */
.modal-content {
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-lg);
}

.modal-header {
  background: var(--cream);
  border-bottom: 2px solid var(--primary-gold);
  padding: var(--space-3);
}

.modal-footer {
  border-top: 2px solid var(--primary-gold);
  padding: var(--space-3);
  background: var(--cream);
}

/* Better Sidebar Link Active State */
.sidebar-link.active {
  background: var(--primary-gold);
  color: white;
}

/* Lighter Score Hero */
.score-hero {
  background: linear-gradient(135deg, #c28a31 0%, #e0a64d 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 3px solid #c28a31;
}
