/* EnergyQuota Design Tokens - Revised for Green Primary (TANESCO-inspired) */
:root {
  /* Colors */
  --color-primary: #007B40; /* TANESCO-inspired Green Primary */
  --color-primary-rgb: 0, 123, 64; /* RGB equivalent for rgba */
  --color-primary-dark: #005f32;
  --color-primary-light: #009952;
  
  --color-secondary: #FFC72C; /* Exact TANESCO Yellow Accent (unchanged) */
  --color-secondary-dark: #cc9f23;
  --color-secondary-light: #ffd966;
  --color-secondary-soft: rgba(255, 199, 44, 0.15); /* Soft version for backgrounds */

  --color-bg: #F8F9FA; /* Light Gray Background (unchanged) */
  --color-bg-card: #FFFFFF; /* White for cards (unchanged) */
  --color-bg-sidebar: #E8F0F8; /* Lighter Blue/Gray for Sidebar (unchanged) */
  --color-bg-header: #E8F0F8; /* Lighter Blue/Gray for Header (unchanged) */
  
  --color-text-dark: #212529; /* Dark Gray for Headings (unchanged) */
  --color-text-body: #495057; /* Slightly Lighter for Body (unchanged) */
  --color-text-muted: #6C757D; /* Muted Gray (unchanged) */
  
  --color-success: var(--color-primary); /* Success should align with primary green */
  --color-warning: #FFC107;
  --color-error: #DC3545;
  --color-info: #17A2B8;
  
  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --text-h1: 2.8rem;
  --text-h2: 2.2rem;
  --text-h3: 1.8rem;
  --text-h4: 1.4rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  
  /* Spacing */
  --space-xxs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.35s ease;
}
