/* CSS Variables for Global Styles */
/* Colors extracted from report.ts and calculator */

:root {
  /* Primary Brand Colors */
  --color-brand-primary: #E94C1E;
  --color-brand-hover: #d13d16;
  
  /* Blue - Primary Actions & Titles */
  --color-blue-600: #2563eb;
  --color-blue-700: #1e40af;
  --color-blue-500: #3b82f6;
  
  /* Green - Success & Results */
  --color-green-600: #059669;
  --color-green-700: #047857;
  
  /* Red - Error & Danger */
  --color-red-600: #dc2626;
  --color-red-700: #b91c1c;
  
  /* Amber/Yellow - Warning */
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  
  /* Gray - Text & Borders */
  --color-gray-900: #1f2937;
  --color-gray-800: #1f2937;
  --color-gray-700: #374151;
  --color-gray-600: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;
  
  /* Base Colors */
  --color-white: #ffffff;
  --color-black: #333333;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  
  /* Section Spacing */
  --section-margin-bottom: 30px;
  --subsection-margin-top: 20px;
  --subsection-margin-bottom: 10px;
  
  /* Padding */
  --padding-xs: 5px;
  --padding-sm: 8px;
  --padding-md: 15px;
  --padding-lg: 20px;
  
  /* Font Sizes */
  --font-size-xs: 12px;
  --font-size-sm: 13px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  
  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* Border Radius */
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 8px;
  
  /* Border Width */
  --border-thin: 1px;
  --border-medium: 2px;
  --border-thick: 3px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 900px;
  --container-xl: 1200px;
  
  /* Transitions */
  --transition-fast: 150ms;
  --transition-normal: 300ms;
  --transition-slow: 500ms;
  
  /* Z-index */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 40;
  --z-modal: 50;
  --z-popover: 60;
  --z-tooltip: 70;
}

