/* Light Theme Variables and Premium Styling Overrides */
body.light-theme {
  --bg-color: #f8fafc;
  --panel-bg: #ffffff;
  --border-color: rgba(15, 23, 42, 0.08);
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

/* Sidebar styling in Light mode */
body.light-theme .sidebar {
  background: rgba(255, 255, 255, 0.85);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .menu-link {
  color: var(--text-secondary);
}

body.light-theme .menu-link:hover, 
body.light-theme .menu-link.active {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body.light-theme .menu-link.active {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #0891b2;
}

/* Form Controls in Light mode */
body.light-theme .form-control {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

body.light-theme .form-control:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.15);
}

body.light-theme select.form-control {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Badges, Indicators and Cards in Light mode */
body.light-theme .day-checkbox-label {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

body.light-theme .day-checkbox-label:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-theme .interval-badge {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

body.light-theme .status-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

body.light-theme .empty-state {
  color: var(--text-secondary);
}

/* Calendar event elements style tweaks */
body.light-theme .fc-event {
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Toast container override */
body.light-theme .toast {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
