/* Import base styles */
@import url('index-base.css');

/* Light theme CSS variables */
:root {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8f8f8;
    --text-primary: #333333;
    --text-secondary: #444444;
    --text-muted: #666666;
    --accent-primary: #005566;
    --accent-secondary: #003d3d;
    --accent-light: #e6f3f3;
    --accent-lighter: #d1e8e8;
    --border-primary: #e0e0e0;
    --border-secondary: #f0f0f0;
    --shadow-light: rgba(0,0,0,0.1);
    --error-bg: #fff5f5;
    --error-border: #fed7d7;
    --error-text: #c53030;
    --error-text-secondary: #742a2a;
    --theme-toggle-bg: #005566;
    --theme-toggle-text: #ffffff;
}