/* Supervisor Theme - Professional & Authoritative */

.supervisor-theme {
  /* Primary Colors - Deep Blue & Purple */
  --background: 230 25% 97%; /* Very Light Blue */
  --foreground: 230 40% 15%; /* Very Dark Blue */
  --card: 0 0% 100%; /* Pure White */
  --card-foreground: 230 40% 15%;
  --popover: 0 0% 100%;
  --popover-foreground: 230 40% 15%;
  
  /* Primary - Professional Dark Blue */
  --primary: 230 60% 45%; /* Deep Blue */
  --primary-foreground: 0 0% 100%;
  --primary-glow: 230 60% 65%;
  
  /* Secondary - Royal Purple */
  --secondary: 260 60% 50%; /* Purple */
  --secondary-foreground: 0 0% 100%;
  --secondary-light: 260 60% 70%;
  
  /* Accent - Light Blue */
  --accent: 220 70% 95%; /* Very Light Blue */
  --accent-foreground: 230 60% 45%;
  --accent-light: 220 70% 97%;
  
  /* Muted - Cool Gray */
  --muted: 230 25% 94%;
  --muted-foreground: 230 20% 40%;
  
  /* 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: 230 25% 88%;
  --input: 0 0% 100%;
  --ring: 230 60% 45%;
  
  --radius: 0.5rem;

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

/* Supervisor Sidebar Styles */
.supervisor-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(230 20% 40%);
}

.supervisor-theme .sidebar-item:hover {
  color: hsl(230 60% 45%);
  background: hsl(220 70% 95%);
}

.supervisor-theme .sidebar-item-active {
  color: hsl(0 0% 100%);
  background: linear-gradient(135deg, hsl(230 60% 45%), hsl(260 60% 50%));
  font-weight: 600;
  box-shadow: 0 4px 12px hsl(230 60% 45% / 0.3);
}

/* Supervisor Button Styles */
.supervisor-theme .btn-primary {
  background: linear-gradient(135deg, hsl(230 60% 45%), hsl(260 60% 50%));
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 12px hsl(230 60% 45% / 0.3);
}

.supervisor-theme .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px hsl(230 60% 45% / 0.4);
}

/* Supervisor Card Styles */
.supervisor-theme .card-style {
  background: hsl(0 0% 100%);
  border: 1px solid hsl(230 25% 88%);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px hsl(230 25% 50% / 0.08);
  transition: all 0.3s;
}

.supervisor-theme .card-style:hover {
  border-color: hsl(230 60% 45% / 0.3);
  box-shadow: 0 4px 16px hsl(230 60% 45% / 0.15);
  transform: translateY(-2px);
}
