/* Modern Layout Styles */
* {
    box-sizing: border-box;
}

/* Global Text Decoration Removal */
a, button, .btn, .nav-link, .dropdown-item, .logo-container, .sidebar-nav-item,
.material-btn, .btn-modern, .language-btn, .mobile-menu-btn {
    text-decoration: none !important;
}

a:hover, a:focus, a:active,
button:hover, button:focus, button:active,
.btn:hover, .btn:focus, .btn:active,
.nav-link:hover, .nav-link:focus, .nav-link:active,
.dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active,
.logo-container:hover, .logo-container:focus, .logo-container:active,
.sidebar-nav-item:hover, .sidebar-nav-item:focus, .sidebar-nav-item:active,
.material-btn:hover, .material-btn:focus, .material-btn:active,
.btn-modern:hover, .btn-modern:focus, .btn-modern:active,
.language-btn:hover, .language-btn:focus, .language-btn:active,
.mobile-menu-btn:hover, .mobile-menu-btn:focus, .mobile-menu-btn:active {
    text-decoration: none !important;
}

/* ===== CSS CUSTOM PROPERTIES & RESET ===== */
:root {
  /* Professional Color Palette - Matching Master Theme */
  --primary: #383F45;
  --secondary: #E7A51B;
  --accent: #F7C873;
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #E53935;
  
  /* Surface Colors */
  --white: #ffffff;
  --surface-color: #ffffff;
  --background-color: #f5f5f5;
  
  /* Gray Scale */
  --gray-50: #f8f9fa;
  --gray-100: #f5f5f5;
  --gray-200: #e9ecef;
  --gray-300: #e0e0e0;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212121;
  --gray-900: #000000;
  
  /* Semantic Colors */
  --text-primary: #212121;
  --text-secondary: #757575;
  --bg-primary: var(--background-color);
  --bg-secondary: var(--surface-color);
  --border-color: rgba(56, 63, 69, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.12);
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Typography 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;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Breakpoints */
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-2xl: 1536px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== UTILITY CLASSES ===== */
/* Container System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Flexbox Utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1; }
.flex-auto { flex: auto; }
.flex-none { flex: none; }

/* Grid System */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-auto { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-cols-responsive { grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); }

/* Gap Utilities */
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Spacing Utilities */
.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Text Utilities */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: #000000 !important; }

.capitalize { text-transform: capitalize; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }

/* Background Utilities */
.bg-primary { background: var(--bg-primary); }
.bg-secondary { background: var(--bg-secondary); }
.bg-white { background: var(--white); }
.bg-transparent { background: transparent; }

/* Border Utilities */
.border { border: 1px solid var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.border-b { border-bottom: 1px solid var(--border-color); }
.border-0 { border: none; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }

/* Width/Height Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { 
    min-height: 100vh; 
   padding: 0rem;
}

/* Display Utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* ===== COMPONENT CLASSES ===== */
/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
  
  &:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  &.btn-sm {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
  }
  
  &.btn-lg {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
  }
  
  &.btn-primary {
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 80%, black));
    color: var(--white);
    box-shadow: var(--shadow-md);
    
    &:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
  }
  
  &.btn-secondary {
    background: var(--secondary) !important;
    color: #000000 !important;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--secondary) !important;
    
    &:hover:not(:disabled) {
      background: color-mix(in srgb, var(--secondary) 80%, black) !important;
      color: #000000 !important;
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
  }
  
  &.btn-outline {
    background: transparent !important;
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
    
    &:hover:not(:disabled) {
      background: var(--secondary) !important;
      color: #000000 !important;
    }
  }
  
  &.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    
    &:hover:not(:disabled) {
      background: var(--gray-100);
    }
  }
}

/* Card Component */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  
  &.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
    
    .card-title {
      font-size: var(--text-xl);
      font-weight: 700;
      margin: 0;
    }
  }
  
  .card-body {
    padding: var(--space-lg);
  }
  
  .card-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-color);
    background: var(--gray-50);
  }
}

/* Form Components */
.form-group {
  margin-bottom: var(--space-md);
  
  .form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
  }
  
  .form-control {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-base);
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    
    &:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent);
    }
    
    &::placeholder {
      color: var(--text-secondary);
      opacity: 1;
    }
    
    &:disabled {
      background: var(--gray-100);
      opacity: 0.6;
      cursor: not-allowed;
    }
  }
}

/* Badge Component */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  
  &.badge-primary {
    background: var(--primary);
    color: var(--white);
  }
  
  &.badge-secondary {
    background: var(--secondary);
    color: var(--white);
  }
  
  &.badge-success {
    background: var(--success);
    color: var(--white);
  }
  
  &.badge-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
  }
}


  
  .feature-item {
    @extend .card, .card-hover;
    text-align: center;
    padding: var(--space-xl);
    position: relative;
    
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      transform: scaleX(0);
      transition: transform var(--transition-base);
    }
    
    &:hover::before {
      transform: scaleX(1);
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto var(--space-lg);
      background: linear-gradient(135deg, var(--secondary), color-mix(in srgb, var(--secondary) 80%, black));
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-2xl);
      color: var(--white);
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }
    
    .feature-title {
      font-size: var(--text-xl);
      font-weight: 700;
      margin-bottom: var(--space-md);
    }
    
    .feature-description {
      color: var(--text-secondary);
      line-height: 1.6;
    }
    
    &:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: var(--shadow-lg);
    }
  }

/* ===== RESPONSIVE DESIGN ===== */
/* Mobile First Approach */
@media (min-width: 640px) {
  .sm\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\\:flex-row { flex-direction: row; }
  .sm\\:text-lg { font-size: var(--text-lg); }
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
  
  .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\\:flex-row { flex-direction: row; }
  .md\\:text-xl { font-size: var(--text-xl); }
  .md\\:text-2xl { font-size: var(--text-2xl); }
  .md\\:text-3xl { font-size: var(--text-3xl); }
  
  .modal .modal-content {
    max-width: 600px;
  }
  
  .campaign-card .campaign-image {
    height: 250px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-xl); }
  
  .lg\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\\:text-2xl { font-size: var(--text-2xl); }
  .lg\\:text-3xl { font-size: var(--text-3xl); }
  .lg\\:text-4xl { font-size: var(--text-4xl); }
  
  .hero-stats {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    
    .stat-item {
      text-align: center;
      
      .stat-number {
        font-size: var(--text-3xl);
        font-weight: 700;
        color: var(--secondary);
      }
    }
  }
}

@media (min-width: 1280px) {
  .xl\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ===== ANIMATIONS & INTERACTIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* App Layout */
.app-layout {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Header Styles */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1; /* Higher than sidebar */
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 70px; /* Define header height */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    margin-right: 0.65rem;
}

.logo-icon img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 0.5rem;
    min-width: 200px;
    z-index: 1001;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: #383F45; /* Updated to match sidebar color */
    color: white;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #E7A51B; /* Updated to use secondary color */
    color: #000;
    transform: scale(1.05);
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background: #383F45; /* Updated to requested color */
    color: white;
    height: calc(100vh - 70px); /* Subtract header height */
    position: fixed;
    left: 0;
    top: 120px; /* Start below header */
    z-index: 1050; /* Below header but above content */
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(-100%); /* Default closed state */
    padding-top: 1rem; /* Add top padding as requested */
}

.sidebar.sidebar-open {
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 120px; /* Start below header */
    left: 0;
    width: 100%;
    height: calc(100vh - 120px); /* Subtract header height */
    background: rgba(0,0,0,0.5);
    z-index: 1049; /* Just below sidebar */
    display: none;
}


.sidebar-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header .logo-container {
    display: flex;
    align-items: center;
}

.sidebar-header .logo-icon img {
    width: 32px;
    height: 32px;
}

.sidebar-header .logo-text h1 {
    font-size: 1.25rem;
    color: white;
    margin: 0;
}

.sidebar-header .logo-text p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section-title {
    font-size: 0.75rem!important;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.nav-item:hover {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

.nav-item.active {
    color: white;
    background: rgba(231, 165, 27, 0.2); /* Updated to use E7A51B */
    border-right: 3px solid #E7A51B; /* Updated to use E7A51B */
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #E7A51B; /* Updated to use E7A51B */
}

.nav-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.nav-item span {
    font-weight: 500;
}

/* Notification Badge */
.notification-badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: auto;
    min-width: 20px;
    text-align: center;
}

/* User Profile Card */
.user-profile-card {
    background: rgba(255,255,255,0.1);
    margin: 1rem 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.user-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #5a626a 0%, #6c757d 100%);
    border: 2px solid #1e293b;
    border-radius: 50%;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.username {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Special Navigation Buttons */
.login-btn {
    background: linear-gradient(135deg, #E7A51B, #d4941a) !important; /* Updated color */
    color: #000 !important;
}

.register-btn {
    background: linear-gradient(135deg, #383F45, #2a2f34) !important; /* Updated color */
    color: white !important;
}

.doctor-login-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
}

.logout-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        max-width: 320px;
        top: 100px; /* Keep below header on mobile too */
        height: calc(100vh - 100px);
        padding-top: 1.5rem; /* Extra padding on mobile */
    }
    
    .sidebar.sidebar-open {
        transform: translateX(0);
    }
    
    .sidebar-overlay.active {
        display: block;
        top: 100px; /* Start below header */
        height: calc(100vh - 100px);
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 1rem; /* Add some spacing below header */
    }
    
    .header-container {
        padding: 1rem;
        height: 70px; /* Ensure consistent header height */
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Better touch targets for mobile */
    .nav-item {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 100%;
        max-width: 280px;
        top: 100px; /* Consistent with larger mobile */
        height: calc(100vh - 100px);
        padding-top: 1.25rem;
    }
    
    .header-container {
        height: 70px; /* Consistent header height */
        padding: 0.75rem 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 0; /* Default to no margin since sidebar is closed */
    min-height: 100vh;
    background: #f8fafc;
    transition: all 0.3s ease;
}

/* Modern Sidebar Structure - Updated Layout */
.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section-title {
    font-size: 0.7rem !important;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

/* Updated Navigation Items Structure */
.nav-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-item:hover {
    color: white;
    background: rgba(231, 165, 27, 0.1); /* Updated to use E7A51B */
    transform: translateX(4px);
}

.nav-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-icon {
    background: rgba(231, 165, 27, 0.2); /* Updated to use E7A51B */
    transform: scale(1.05);
}

.nav-item span {
    font-weight: 500;
    font-size: 0.9rem;
}
        transform: translateY(-1px);
    }

    /* Filter buttons */
    .filter-btn {
        background: rgba(30, 41, 59, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(148, 163, 184, 0.3) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border-color: rgba(99, 102, 241, 0.5) !important;
        color: white;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        transform: translateY(-1px);
    }

    .filter-btn:hover:not(.active) {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.5) !important;
        transform: translateY(-1px);
    }

    /* Status badges */
    .status-badge {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        font-weight: 600;
        letter-spacing: 0.025em;
    }

    /* Search input */
    .search-input {
        background: rgba(30, 41, 59, 0.2);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(148, 163, 184, 0.3) !important;
        transition: all 0.3s ease;
    }

    .search-input:focus {
        background: rgba(30, 41, 59, 0.3);
        border-color: rgba(99, 102, 241, 0.7) !important;
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    /* Animation keyframes */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-fade-in {
        animation: fadeInUp 0.6s ease-out;
    }

    /* Floating elements */
    .float-element {
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Gradient text */
    .gradient-text {
        background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Modern input styles */
    .modern-input {
        background: rgba(30, 41, 59, 0.2);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(148, 163, 184, 0.3) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modern-input:focus {
        background: rgba(30, 41, 59, 0.3);
        border-color: rgba(99, 102, 241, 0.7) !important;
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        transform: translateY(-1px);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(30, 41, 59, 0.1);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
    }

    /* Loading animation */
    .loading-spinner {
        border: 3px solid rgba(99, 102, 241, 0.3);
        border-top: 3px solid #6366f1;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .mobile-hide {
            display: none !important;
        }

        .mobile-stack {
            flex-direction: column !important;
            gap: 0.5rem !important;
        }
    }

 
    /* Modern glass effect cards */
    .glass-card {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(56, 63, 69, 0.1) !important;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(56, 63, 69, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--text-primary) !important;
    }
    
    .glass-card:hover {
        background: rgba(255, 255, 255, 0.98) !important;
        border-color: rgba(231, 165, 27, 0.3) !important;
        box-shadow: 
            0 16px 48px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(231, 165, 27, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        color: var(--text-primary) !important;
    }
    
    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
        backdrop-filter: blur(20px);
        margin: 5% auto;
        padding: 0;
        border: 1px solid rgba(148, 163, 184, 0.3);
        border-radius: 1rem;
        width: 90%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    }

    .close {
        color: #94a3b8;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close:hover {
        color: #f1f5f9;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-control {
        background: rgba(30, 41, 59, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(148, 163, 184, 0.3);
        border-radius: 0.75rem;
        padding: 0.75rem 1rem;
        width: 100%;
        color: white;
        font-size: 0.875rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: rgba(99, 102, 241, 0.7);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        background: rgba(30, 41, 59, 0.4);
    }

    .form-control::placeholder {
        color: rgba(148, 163, 184, 0.7);
    }

    .payment-info {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
        padding: 1rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(99, 102, 241, 0.3);
        margin-bottom: 1.5rem;
    }
    
    /* Modern button styles */
    .btn-gradient {
        background: var(--secondary) !important;
        box-shadow: 0 4px 15px rgba(231, 165, 27, 0.3);
        transition: all 0.3s ease;
        color: #000000 !important;
        border: 1px solid var(--secondary) !important;
    }
    
    .btn-gradient:hover {
        background: color-mix(in srgb, var(--secondary) 80%, black) !important;
        box-shadow: 0 6px 20px rgba(231, 165, 27, 0.4);
        transform: translateY(-2px);
        color: #000000 !important;
    }
    
    /* Filter buttons */
    .filter-btn {
        background: rgba(30, 41, 59, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(148, 163, 184, 0.3) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .filter-btn.active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border-color: rgba(99, 102, 241, 0.5) !important;
        color: white;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        transform: translateY(-1px);
    }
    
    /* Modern input styles */
    .modern-input {
        background: rgba(30, 41, 59, 0.2);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(148, 163, 184, 0.3) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .modern-input:focus {
        background: rgba(30, 41, 59, 0.3);
        border-color: rgba(99, 102, 241, 0.7) !important;
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        transform: translateY(-1px);
    }
    
    /* Animation keyframes */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fade-in {
        animation: fadeInUp 0.6s ease-out;
    }
    
    /* Floating elements */
    .float-element {
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    /* Gradient text */
    .gradient-text {
        background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .mobile-hide {
            display: none !important;
        }
        
        .mobile-stack {
            flex-direction: column !important;
            gap: 0.5rem !important;
        }

        .modal-content {
            width: 95%;
            margin: 10% auto;
        }
    }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            min-height: 100vh;
        }

        @media (max-width: 768px) {
            body.overflow-hidden {
                overflow: hidden;
            }
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .nav-link {
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        
        .nav-link.active {
            background: rgba(255, 255, 255, 0.2);
            border-left: 4px solid #E7A51B;
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        .content-area {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }
        .border{
            border: none !important;
        }
        /* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #6366f1, #8b5cf6); /* Indigo to Violet */
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #8b5cf6 transparent;
}
/* Animations */
@keyframes slideInLeft { 
    from { opacity:0; transform: translateX(-15px);} 
    to { opacity:1; transform:translateX(0);} 
}
.nav-link { animation: slideInLeft 0.3s ease-out; }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* Logo glow effect */
.logo-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.logo-glow:hover::before {
    opacity: 0.3;
}

/* ===== SPONSOR MODAL STYLES ===== */
.sponsor-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sponsor-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin: 20px;
    padding: 0;
    border: none;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

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

.sponsor-modal-header {
    background: linear-gradient(135deg, #e11d48 0%, #be185d 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.sponsor-modal-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sponsor-modal-header .material-icons {
    font-size: 32px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.sponsor-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.sponsor-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.sponsor-modal-body {
    padding: 40px;
}

.sponsor-heart-message {
    margin-bottom: 30px;
    text-align: center;
}

.sponsor-heart-message p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #374151;
}

.sponsor-heart-message p:first-child {
    font-size: 18px;
    color: #e11d48;
    font-weight: 600;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
    border-radius: 15px;
    border: 2px solid #e879f9;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #a21caf;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.sponsor-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group label .material-icons {
    font-size: 18px;
    color: #e11d48;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.amount-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.amount-btn:hover {
    border-color: #e11d48;
    background: #fef2f2;
}

.amount-btn.selected {
    border-color: #e11d48;
    background: #e11d48;
    color: white;
}

.amount-btn.custom {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-color: #f59e0b;
}

.amount-btn.custom:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.sponsor-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.cancel-btn {
    padding: 15px 30px;
    border: 2px solid #9ca3af;
    background: white;
    color: #6b7280;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cancel-btn:hover {
    border-color: #6b7280;
    background: #f9fafb;
}

.sponsor-submit-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #e11d48 0%, #be185d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.sponsor-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.sponsor-submit-btn .material-icons {
    font-size: 20px;
}

/* Success Modal Styles */
.success-modal {
    max-width: 500px;
}

.success-header {
    text-align: center;
    padding: 40px 40px 20px;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon .material-icons {
    font-size: 60px;
    color: #e11d48;
    animation: heartbeat 2s ease-in-out infinite;
}

.success-header h2 {
    color: #e11d48;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.success-body {
    padding: 0 40px 20px;
    text-align: left;
}

.success-body p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #374151;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f0fdf4;
    border-radius: 8px;
}

.impact-list .material-icons {
    color: #16a34a;
    font-size: 20px;
}

.final-message {
    background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e11d48;
    font-style: italic;
    margin: 20px 0;
}

.success-actions {
    padding: 20px 40px 40px;
    text-align: center;
}

.close-success-btn {
    padding: 12px 30px;
    background: #6b7280;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    background: #4b5563;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sponsor-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        max-height: 95vh;
    }
    
    .sponsor-modal-header,
    .sponsor-modal-body {
        padding: 20px;
    }
    
    .sponsor-modal-header h2 {
        font-size: 22px;
    }
    
    .amount-options {
        flex-direction: column;
    }
    
    .amount-btn {
        flex: none;
    }
    
    .sponsor-actions {
        flex-direction: column;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}








