:root {
  /* Colors */
  --primary-blue: #0076DD;
  --primary-blue-hover: #0076DD;
  --primary-blue-dark: #0765B7;
  --secondary-cyan: #00CDE9;
  
  --text-primary: #333;
  --text-secondary: #555;
  --text-muted: #777;
  --text-light: #888;
  --text-header: #1e4163;
  
  --white: white;
  
  --border-gray: #ccc;
  --border-light: #e0e0e0;
  
  --background-light: #f5f5f5;
  --background-white: #fff;
  
  --focus-blue: #66afe9;
  
  --error-red: #d62d2d;
  --error-red-light: #f8d7da;
  --success-green: #28a745;
  --success-green-light: #d4edda;
  
  /* Shadows */
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.4);
  --shadow-darker: rgba(0, 0, 0, 0.6);
  --shadow-primary: #0076DD66;
  --shadow-gradient: rgba(102, 126, 234, 0.4);
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Spacing */
  --spacing-xs: 6px;
  --spacing-sm: 8px;
  --spacing-md: 10px;
  --spacing-lg: 12px;
  --spacing-xl: 15px;
  --spacing-2xl: 20px;
  
  /* Font sizes */
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 16px;
  --font-lg: 22px;
  --font-xl: 24px;
  
  /* Borders */
  --border-default: 1px solid var(--border-gray);
}
