/* Professional Netherlands-Friendly Color Scheme */
:root {
    /* Primary Colors - Clean & Professional */
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8FAFB;
    --tertiary-bg: #F0F4F8;
    
    /* Text Colors */
    --text-primary: #1A2332;
    --text-secondary: #5A6C7D;
    --text-tertiary: #8B98A5;
    --text-accent: #2E5C8A;
    --text-success: #00ffae;
    --text-error: #E63946;
    
    /* Accent Colors - Professional Blue/Navy */
    --accent-primary: #2E5C8A;
    --accent-secondary: #4A90E2;
    --accent-tertiary: #1A4971;
    --accent-light: #E8F2F7;
    
    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(46, 92, 138, 0.15);
    --glass-shadow: rgba(26, 35, 50, 0.08);
    
    /* Shadow Colors */
    --shadow-light: rgba(26, 35, 50, 0.04);
    --shadow-medium: rgba(26, 35, 50, 0.08);
    --shadow-strong: rgba(26, 35, 50, 0.15);
    --shadow-dark: rgba(26, 35, 50, 0.25);
    
    /* Border Colors */
    --border-light: #E0E6ED;
    --border-medium: #CBD5E0;
    --border-accent: var(--accent-primary);
    
    /* Hover States */
    --hover-bg: var(--tertiary-bg);
    --hover-shadow: 0 8px 20px var(--shadow-medium);
    --hover-transform: translateY(-2px);
}
