/* Light Theme CSS Variables */
:root,
[data-theme="light"] {
  --background-color: #ffffff;
  --text-color: #333333;
  --text-color-emphasis: #000000;
  --primary-color: #3498db;
  --primary-color-rgb: 52, 152, 219;
  --secondary-color: #2ecc71;
  --accent-color: #f39c12;
  --error-color: #e74c3c;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --info-color: #3498db;
  --border-color: #e0e0e0;
  --hover-color: #f5f5f5;
  --active-color: #e8e8e8;
  --disabled-color: #d4d4d4;
  --disabled-text-color: #999999;
  --card-background: #ffffff;
  
  /* Component specific variables */
  --button-text-color: #ffffff;
  --input-background: #ffffff;
  --input-border: 1px solid #e0e0e0;
  --input-focus-border: 1px solid #3498db;
  
  /* Spacing and layout */
  --border-radius: 4px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  
  /* Font settings */
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Transitions */
  --transition-fast: 0.1s ease;
  --transition-medium: 0.2s ease;
  --transition-slow: 0.3s ease;
}/* Dark Theme CSS Variables */
[data-theme="dark"] {
  --background-color: #1e1e2e;
  --text-color: #e2e2e2;
  --text-color-emphasis: #ffffff;
  --primary-color: #61afef;
  --primary-color-rgb: 97, 175, 239;
  --secondary-color: #98c379;
  --accent-color: #e5c07b;
  --error-color: #e06c75;
  --success-color: #98c379;
  --warning-color: #e5c07b;
  --info-color: #61afef;
  --border-color: #4c4c64;
  --hover-color: #2a2a3a;
  --active-color: #34344a;
  --disabled-color: #3a3a50;
  --disabled-text-color: #7a7a9a;
  --card-background: #242436;
  
  /* Component specific variables */
  --button-text-color: #ffffff;
  --input-background: #292a3b;
  --input-border: 1px solid #4c4c64;
  --input-focus-border: 1px solid #61afef;
  
   /* Spacing and layout */
   --border-radius: 4px;
   --spacing-xs: 4px;
   --spacing-sm: 8px;
   --spacing-md: 16px;
   --spacing-lg: 24px;
   --spacing-xl: 32px;
      
  /* Shadows - adjusted for dark theme */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
  
  /* Font settings */
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Transitions */
  --transition-fast: 0.1s ease;
  --transition-medium: 0.2s ease;
  --transition-slow: 0.3s ease;
}