/**
 * CSS Variables - Design System
 * Global design tokens for consistent styling
 */

:root {
  /* Colors */
  --color-background: #1a1a1a;
  --color-surface: #2d2d2d;
  --color-surface-light: #3d3d3d;
  --color-border: #404040;
  --color-border-light: #555;
  
  --color-text-primary: #e0e0e0;
  --color-text-secondary: #888;
  --color-text-muted: #666;
  --color-text-white: white;
  
  --color-success: #4CAF50;
  --color-primary: #2196F3;
  --color-warning: #FF9800;
  --color-error: #f44336;
  --color-info: #00BCD4;
  
  /* Status Colors */
  --color-status-active: #4CAF50;
  --color-status-pending: #FF9800;
  --color-status-inactive: #666;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Courier New', monospace;
  
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Layout */
  --sidebar-width: 250px;
  --header-height: 70px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-Index */
  --z-dropdown: 100;
  --z-modal: 1000;
  --z-toast: 2000;
}