:root {
  --primary: #4361ee;
  --secondary: #3f37c9;
  --success: #4cc9f0;
  --dark: #212529;
  --light: #f8f9fa;
  --sidebar: #2a3042;
  --sidebar-dark: #222736;
  --mtn-yellow: #ffc800;
  --mtn-dark: #f2a900;
  --telecel-red: #e60000;
  --telecel-dark: #cc0000;
  --airteltigo-orange: #ff6600;
  --airteltigo-dark: #e65c00;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --card-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  --bg-color: #f5f7fa;
  --card-bg: #ffffff;
  --text-color: #333333;
  --text-muted: #6c757d;
}

.dark-mode {
  --bg-color: #1a1a2e;
  --card-bg: #16213e;
  --text-color: #f8f9fa;
  --text-muted: #adb5bd;
  --sidebar: #1a1a2e;
  --sidebar-dark: #0f0f1a;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Layout Structure */
.wrapper {
  display: flex;
  flex: 1;
}

.sidebar {
  width: 250px;
  background: var(--sidebar);
  color: white;
  transition: all 0.3s ease;
  position: fixed;
  height: 100vh;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.main-content {
  margin-left: 250px;
  flex: 1;
  transition: all 0.3s ease;
  padding-bottom: 60px; /* Footer space */
}

.sidebar-collapsed .sidebar {
  width: 80px;
}

.sidebar-collapsed .main-content {
  margin-left: 80px;
}

.sidebar-collapsed .sidebar-text {
  display: none !important;
}

.sidebar-collapsed .nav-item {
  text-align: center;
}

/* Sidebar Styles */
.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
}

.sidebar-brand i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.sidebar-menu {
  padding: 1rem 0;
}

.nav-item {
  margin-bottom: 5px;
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  white-space: nowrap;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--success);
}

.nav-link i {
  margin-right: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toggle-sidebar-text {
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 2px 5px;
  cursor: pointer;
  font-size: 12px;
  display: none;
}

/* Navbar Styles */
.navbar {
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  display: none;
}

.search-bar {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.search-bar input {
  padding-left: 40px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
}

.search-bar i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);  
  color: var(--text-muted);
}

.nav-icons {
  display: flex;
  align-items: center;
}

.nav-icon {
  position: relative;
  margin-left: 1.5rem;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
}

.nav-icon:hover {
  color: var(--primary, #0d9488);
}

.badge-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 0.6rem;
  padding: 3px 6px;
  background: var(--telecel-red);
  color: white;
  border-radius: 50%;
}

.user-dropdown img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Main Content Styles */
.dashboard-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Welcome Banner & Welcome Card (theme-based, used across client pages) */
.welcome-banner,
.welcome-card {
  background: linear-gradient(135deg, var(--primary, #0d9488), var(--secondary, #0f766e)) !important;
  color: white !important;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.welcome-banner::before,
.welcome-card::before {
  display: none;
}

/* Theme-based primary button (replaces blue-purple gradients) */
.btn-theme {
  background: var(--primary, #0d9488) !important;
  color: white !important;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-theme:hover {
  opacity: 0.9;
  color: white !important;
  background: var(--primary, #0d9488) !important;
}

/* Theme-based modal headers (override gradient classes) */
.modal-header.bg-gradient-to-r,
.modal-header[class*="from-blue"],
.modal-header[class*="from-orange"],
.modal-header[class*="from-purple"] {
  background: linear-gradient(135deg, var(--primary, #0d9488), var(--secondary, #0f766e)) !important;
}

/* Dashboard theme utilities */
.bg-theme { background: var(--primary, #0d9488) !important; }
.bg-theme-gradient { background: linear-gradient(135deg, var(--primary, #0d9488), var(--secondary, #0f766e)) !important; }
.text-theme { color: var(--primary, #0d9488) !important; }
.border-theme { border-color: var(--primary, #0d9488) !important; }
.bg-theme-50 {
  background: rgba(13, 148, 136, 0.12) !important; /* fallback for browsers without color-mix */
  background: color-mix(in srgb, var(--primary, #0d9488) 12%, white) !important;
}
.border-theme-200 {
  border-color: rgba(13, 148, 136, 0.25) !important; /* fallback for browsers without color-mix */
  border-color: color-mix(in srgb, var(--primary, #0d9488) 25%, white) !important;
}
.theme-hover-bg:hover { background: color-mix(in srgb, var(--primary, #0d9488) 20%, white) !important; }
.theme-hover-text:hover { color: var(--primary, #0d9488) !important; }
.group:hover .group-hover\:text-theme { color: var(--primary, #0d9488) !important; }
.group:hover .group-hover\:bg-theme-100 { background: color-mix(in srgb, var(--primary, #0d9488) 20%, white) !important; }
.focus\:border-theme:focus { border-color: var(--primary, #0d9488) !important; }
.focus\:ring-theme:focus { --tw-ring-color: var(--primary, #0d9488) !important; }
.progress-theme-gradient { background: linear-gradient(to right, var(--primary, #0d9488), var(--secondary, #0f766e)) !important; }

.welcome-banner h2 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.welcome-banner p {
  opacity: 0.9;
  max-width: 600px;
}

/* User Profile Card */
.profile-card {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.profile-header {
  background: linear-gradient(135deg, var(--primary, #0d9488), var(--secondary, #0f766e));
  color: white;
  padding: 2rem;
  position: relative;
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.wallet-balance {
  background: var(--card-bg);
  color: var(--text-color);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.wallet-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary, #0d9488);
}

.btn-topup {
  background: linear-gradient(135deg, var(--success), #00a1d9);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn-topup:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Enhanced Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.stat-card.success-stat::before {
  background: linear-gradient(to bottom, #28a745, #5cb85c);
}

.stat-card.processing-stat::before {
  background: linear-gradient(to bottom, #ffc107, #f0ad4e);
}

.stat-card.failed-stat::before {
  background: linear-gradient(to bottom, #dc3545, #d9534f);
}

.stat-card.data-stat::before {
  background: linear-gradient(to bottom, var(--success), #00b5ec);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  opacity: 0.2;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stat-trend {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.stat-trend.up {
  color: #28a745;
}

.stat-trend.down {
  color: #dc3545;
}

.stat-trend.neutral {
  color: #ffc107;
}

/* Network Tabs */
.network-tabs {
  margin-bottom: 2rem;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  color: var(--text-muted);
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: var(--primary, #0d9488);
  background: var(--card-bg);
  border-bottom: 3px solid var(--primary, #0d9488);
}

.nav-tabs .nav-link:hover:not(.active) {
  background: rgba(0,0,0,0.05);
}

/* MTN AFA Special Card */
.afa-card {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
  border-left: 5px solid var(--mtn-yellow);
}

.afa-header {
  background: rgba(255, 200, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

.afa-logo {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

.afa-content {
  padding: 1.5rem;
}

.afa-badge {
  background: var(--mtn-yellow);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Data Packages Section - Updated with Pricing Styles */
.data-packages {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

.packages-header {
  background: linear-gradient(135deg, var(--success), #00b5ec);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.packages-header h3 {
  margin: 0;
  font-weight: 600;
}

.network-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: white;
  color: var(--success);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}

/* Hide packages by default */
.package-item {
  display: none;
}

.package-item.show {
  display: block;
}

.price-item {
  background-color: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  border: none;
}

.price-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-top {
  box-shadow: var(--card-shadow);
  padding: 50px 0 25px;
  background-color: #00b5ec;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  margin: -20px -20px 20px -20px;
  text-align: center;
  color: white;
}

.price-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,181,236,0.8), rgba(0,149,200,0.9));
  z-index: -1;
  border-radius: 10px;
}

.price-top h4 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.price-top p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.price-content {
  padding: 1.8rem 1.5rem;
  text-align: center;
  position: relative;
}

.price-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.price-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.badge {
  background-color: var(--success);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  display: inline-block;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-custom {
  background: linear-gradient(135deg, var(--primary, #0d9488), var(--secondary, #0f766e));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Bulk Order Section */
.bulk-order-section {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.bulk-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bulk-order-tabs .nav-link {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}

/* Network Specific Styles */
.mtn .price-top::before {
  background: linear-gradient(135deg, var(--mtn-yellow), var(--mtn-dark));
}

.mtn .btn-custom {
  background: linear-gradient(135deg, var(--mtn-yellow), var(--mtn-dark));
}

.telecel .price-top::before {
  background: linear-gradient(135deg, var(--telecel-red), var(--telecel-dark));
}

.telecel .btn-custom {
  background: linear-gradient(135deg, var(--telecel-red), var(--telecel-dark));
}

.airteltigo .price-top::before {
  background: linear-gradient(135deg, var(--airteltigo-orange), var(--airteltigo-dark));
}

.airteltigo .btn-custom {
  background: linear-gradient(135deg, var(--airteltigo-orange), var(--airteltigo-dark));
}

/* Transactions Section */
.transactions-section {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.transactions-header {
  background: linear-gradient(135deg, var(--dark), #495057);
  color: white;
  padding: 1.5rem;
}

.transactions-header h3 {
  margin: 0;
  font-weight: 600;
}

.transactions-list {
  padding: 1.5rem;
}

.transaction-item {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transaction-item:last-child {
  border-bottom: none;
}

.transaction-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.transaction-info {
  display: flex;
  align-items: center;
}

.transaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1rem;
  color: white;
}

.transaction-icon.success {
  background: linear-gradient(135deg, #28a745, #5cb85c);
}

.transaction-icon.processing {
  background: linear-gradient(135deg, #ffc107, #f0ad4e);
}

.transaction-icon.failed {
  background: linear-gradient(135deg, #dc3545, #d9534f);
}

.transaction-details h6 {
  margin: 0;
  font-weight: 600;
}

.transaction-details small {
  color: var(--text-muted);
}

.transaction-amount {
  font-weight: 600;
  font-size: 1.1rem;
}

.transaction-success {
  color: #28a745;
}

.transaction-processing {
  color: #ffc107;
}

.transaction-failed {
  color: #dc3545;
}

/* Footer */
.footer {
  background: var(--sidebar);
  color: white;
  padding: 0.8rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  margin-left: 250px;
  transition: all 0.3s ease;
}

.sidebar-collapsed .footer {
  margin-left: 80px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Modal Styles */
.modal-content {
  background: var(--card-bg);
  color: var(--text-color);
  border: none;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-details {
  flex: 1;
}

.cart-item-price {
  font-weight: 600;
  margin-left: 1rem;
}

.btn-delete {
  color: #dc3545;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
}

.btn-delete-all {
  color: white;
  background: #dc3545;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background: #ddd;
  border-radius: 50px;
  cursor: pointer;
  margin-left: 1.5rem;
}

.dark-mode-toggle::before {
  content: '\f185';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #ffc107;
}

.dark-mode-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

body.dark-mode .dark-mode-toggle {
  background: #4d4d4d;
}

body.dark-mode .dark-mode-toggle::before {
  content: '\f186';
  left: auto;
  right: 5px;
  color: #f8f9fa;
}

body.dark-mode .dark-mode-toggle::after {
  left: 28px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-card {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 1rem;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .sidebar {
    width: 80px;
  }
  
  .main-content {
    margin-left: 80px;
  }
  
  .sidebar-text {
    display: none;
  }
  
  .nav-item {
    text-align: center;
  }
  
  .navbar-brand {
    display: block;
  }

  .toggle-sidebar-text {
    display: block;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .profile-header {
    text-align: center;
  }
  
  .wallet-balance {
    margin: 1rem auto 0;
    max-width: none;
    width: 100%;
  }
  
  .search-bar {
    display: none;
  }

  .nav-icons {
    margin-left: auto;
    display: flex !important;
  }

  .nav-icon {
    margin-left: 1rem;
    font-size: 1.1rem;
  }

  .dark-mode-toggle {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .navbar-collapse {
    display: block !important;
  }

  .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .packages-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .network-filter {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 0.5rem;
  }

  .footer-links {
    margin-bottom: 0.3rem;
  }

  .footer-link {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .sidebar {
    transform: translateX(-100%);
    width: 250px;
    z-index: 1001;
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .navbar-brand {
    display: block;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .dashboard-container {
    padding: 1rem;
  }
  
  .navbar {
    padding: 0.8rem;
  }

  .footer {
    margin-left: 0 !important;
    padding: 0.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .sidebar-text {
    display: inline !important;
  }

  .nav-item {
    text-align: left;
  }

  .nav-link {
    padding: 0.8rem 1.5rem;
  }

  .nav-link i {
    margin-right: 10px;
  }

  .price-item {
    margin: 0;
  }

  .nav-icons {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-icon {
    margin-left: 0.5rem;
  }

  .user-dropdown {
    margin-left: 0.5rem;
  }

  .welcome-banner {
    padding: 1.5rem;
  }

  .welcome-banner h2 {
    font-size: 1.5rem;
  }

  .profile-header {
    padding: 1.5rem;
  }

  .profile-pic {
    width: 60px;
    height: 60px;
  }

  .wallet-amount {
    font-size: 1.5rem;
  }
} 