/* Super Admin Theme - Premium & Powerful */

.superadmin-theme {
  /* Primary Colors - Luxury Dark with Gold Accents */
  --background: 240 15% 95%; /* Very Light Gray */
  --foreground: 240 20% 8%; /* Almost Black */
  --card: 0 0% 100%; /* Pure White */
  --card-foreground: 240 20% 8%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 20% 8%;
  
  /* Primary - Deep Charcoal with Gold */
  --primary: 240 20% 18%; /* Very Dark Gray */
  --primary-foreground: 45 100% 60%; /* Gold */
  --primary-glow: 45 100% 70%;
  
  /* Secondary - Luxury Gold */
  --secondary: 45 100% 55%; /* Rich Gold */
  --secondary-foreground: 240 20% 8%;
  --secondary-light: 45 100% 75%;
  
  /* Accent - Elegant Rose Gold */
  --accent: 15 100% 97%; /* Very Light Pink */
  --accent-foreground: 15 86% 45%; /* Rose Gold */
  --accent-light: 15 100% 98%;
  
  /* Muted - Refined Gray */
  --muted: 240 15% 92%;
  --muted-foreground: 240 10% 35%;
  
  /* Status Colors */
  --success: 142 71% 45%; /* Green */
  --success-foreground: 0 0% 100%;
  --warning: 38 92% 50%; /* Orange */
  --warning-foreground: 0 0% 100%;
  --info: 199 89% 48%; /* Blue */
  --info-foreground: 0 0% 100%;
  --destructive: 0 84% 60%; /* Red */
  --destructive-foreground: 0 0% 98%;
  
  /* Borders & Inputs */
  --border: 240 15% 85%;
  --input: 0 0% 100%;
  --ring: 45 100% 55%;
  
  --radius: 0.5rem;

  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Cairo', 'Inter', system-ui, sans-serif;
  direction: rtl;
}

/* Super Admin Sidebar Styles */
.superadmin-theme .sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  color: hsl(240 10% 35%);
}

.superadmin-theme .sidebar-item:hover {
  color: hsl(45 100% 45%);
  background: hsl(45 100% 96%);
}

.superadmin-theme .sidebar-item-active {
  color: hsl(45 100% 60%);
  background: linear-gradient(135deg, hsl(240 20% 18%), hsl(240 20% 12%));
  font-weight: 700;
  box-shadow: 0 4px 12px hsl(45 100% 55% / 0.25);
  border: 1px solid hsl(45 100% 55% / 0.2);
}

/* Super Admin Button Styles */
.superadmin-theme .btn-primary {
  background: linear-gradient(135deg, hsl(240 20% 18%), hsl(240 20% 12%));
  color: hsl(45 100% 60%);
  border: 1px solid hsl(45 100% 55% / 0.3);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 12px hsl(45 100% 55% / 0.25);
}

.superadmin-theme .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px hsl(45 100% 55% / 0.35);
  border-color: hsl(45 100% 55% / 0.5);
}

/* Super Admin Card Styles */
.superadmin-theme .card-style {
  background: hsl(0 0% 100%);
  border: 1px solid hsl(240 15% 85%);
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px hsl(240 15% 50% / 0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.superadmin-theme .card-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, hsl(45 100% 55%), hsl(15 86% 45%));
  opacity: 0;
  transition: opacity 0.3s;
}

.superadmin-theme .card-style:hover::before {
  opacity: 1;
}

.superadmin-theme .card-style:hover {
  border-color: hsl(45 100% 55% / 0.3);
  box-shadow: 0 4px 24px hsl(45 100% 55% / 0.12);
  transform: translateY(-2px);
}
