/* Admin Theme - Elegant & Modern */

.admin-theme {
  /* Primary Colors - Sophisticated Indigo & Slate */
  --background: 220 20% 96%; /* Light Gray-Blue */
  --foreground: 220 30% 12%; /* Very Dark Blue-Gray */
  --card: 0 0% 100%; /* Pure White */
  --card-foreground: 220 30% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 30% 12%;
  
  /* Primary - Elegant Indigo */
  --primary: 239 84% 58%; /* Indigo */
  --primary-foreground: 0 0% 100%;
  --primary-glow: 239 84% 78%;
  
  /* Secondary - Modern Slate */
  --secondary: 215 25% 27%; /* Dark Slate */
  --secondary-foreground: 0 0% 100%;
  --secondary-light: 215 25% 47%;
  
  /* Accent - Soft Lavender */
  --accent: 250 100% 97%; /* Very Light Purple */
  --accent-foreground: 239 84% 58%;
  --accent-light: 250 100% 98%;
  
  /* Muted - Neutral Gray */
  --muted: 220 20% 93%;
  --muted-foreground: 220 15% 38%;
  
  /* 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: 220 20% 88%;
  --input: 0 0% 100%;
  --ring: 239 84% 58%;
  
  --radius: 0.75rem;

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

/* Admin Sidebar Styles */
.admin-theme .sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  color: hsl(220 15% 38%);
}

.admin-theme .sidebar-item:hover {
  color: hsl(239 84% 58%);
  background: hsl(250 100% 97%);
}

.admin-theme .sidebar-item-active {
  color: hsl(0 0% 100%);
  background: linear-gradient(135deg, hsl(239 84% 58%), hsl(260 84% 58%));
  font-weight: 600;
  box-shadow: 0 4px 12px hsl(239 84% 58% / 0.35);
}

/* Admin Button Styles */
.admin-theme .btn-primary {
  background: linear-gradient(135deg, hsl(239 84% 58%), hsl(260 84% 58%));
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 12px hsl(239 84% 58% / 0.35);
}

.admin-theme .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px hsl(239 84% 58% / 0.45);
}

/* Admin Card Styles */
.admin-theme .card-style {
  background: hsl(0 0% 100%);
  border: 1px solid hsl(220 20% 88%);
  border-radius: 1rem;
  box-shadow: 0 2px 10px hsl(220 20% 50% / 0.06);
  transition: all 0.3s;
}

.admin-theme .card-style:hover {
  border-color: hsl(239 84% 58% / 0.3);
  box-shadow: 0 4px 20px hsl(239 84% 58% / 0.12);
  transform: translateY(-2px);
}
