/* css/variables.css */

:root {
  /* --- Colors (Dark Mode Default) --- */
  --bg: #0f1117;
  --surface: #1a1d27;
  --surface-hover: #242736;
  --border: #374151;
  --text: #e4e4e7;
  --text-dim: #9ca3af;

  /* Accent Colors */
  --green: #22c55e;
  --green-bg: rgba(34, 197, 94, 0.1);
  --red: #ef4444;
  --red-bg: rgba(239, 68, 68, 0.1);
  --blue: #3b82f6;
  --blue-bg: rgba(59, 130, 246, 0.1);
  --accent: #8b5cf6;

  /* Warning Colors */
  --yellow: #f59e0b;
  --yellow-bg: rgba(245, 158, 11, 0.1);

  /* Shadows */
  --shadow: rgba(0, 0, 0, 0.3);

  /* Typography & Spacing */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
}

/* --- Light Theme Overrides --- */
[data-theme="light"] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-hover: #f1f5f9;
  --border: #cbd5e1;
  --text: #1e293b;
  --text-dim: #475569;

  --green: #16a34a;
  --green-bg: rgba(22, 163, 74, 0.1);
  --red: #dc2626;
  --red-bg: rgba(220, 38, 38, 0.1);
  --blue: #2563eb;
  --blue-bg: rgba(37, 99, 235, 0.1);
  --accent: #7c3aed;

  /* Warning Colors */
  --yellow: #d97706;
  --yellow-bg: rgba(217, 119, 6, 0.1);

  --shadow: rgba(0, 0, 0, 0.05);
}
