/**
 * CoreContact Recruit - Light Mode Design System
 * Created: 2026-02-02
 *
 * 기존 다크 모드 변수명을 유지하면서 값만 라이트로 교체하여
 * 각 템플릿의 CSS 규칙 변경을 최소화합니다.
 */

:root {
    /* Primary Accent - Sky Blue */
    --cyan-accent: #1E40AF;
    --cyan-light: #3B82F6;

    /* Backgrounds - Light & Clean */
    --deep-navy: #F8FAFC;
    --navy-light: #FFFFFF;
    --navy-lighter: #F1F5F9;

    /* Text - Dark on Light */
    --text-light: #0F172A;
    --text-muted: #64748B;
    --white: #FFFFFF;

    /* Component Tokens */
    --card-bg: #FFFFFF;
    --card-border: #E2E8F0;
    --card-hover: #F8FAFC;
    --accent-bg: #EFF6FF;
    --accent-border: #BFDBFE;
    --input-bg: #FFFFFF;
    --input-border: #CBD5E1;
    --input-focus: #1E40AF;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.1);

    /* Status Colors */
    --success-green: #10B981;
    --warning-yellow: #F59E0B;
    --error-red: #EF4444;
}

/* Global input/textarea light mode overrides */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="month"],
input[type="url"],
input[type="search"],
textarea,
select {
    color-scheme: light;
}

/* Scrollbar light mode */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}
