/* 浅色主题变量 */
:root {
    /* 基础颜色 */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --accent-color: #0062ff;
    --hover-bg: #f1f5f9;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --active-bg: #f0f7ff;

    /* 侧边栏 */
    --sidebar-bg: #ffffff;
    --sidebar-hover: #f1f5f9;
    --sidebar-active: #f0f7ff;
    --sidebar-border: #e2e8f0;

    /* 顶部导航栏 */
    --header-bg: #ffffff;
    --header-border: #e2e8f0;

    /* 按钮 */
    --btn-primary-bg: #0062ff;
    --btn-primary-text: #ffffff;
    --btn-default-bg: #f1f5f9;
    --btn-default-text: #0f172a;
    --btn-danger-bg: #ef4444;
    --btn-danger-text: #ffffff;

    /* 表单 */
    --input-bg: #ffffff;
    --input-border: #e2e8f0;
    --input-text: #0f172a;
    --input-placeholder: #94a3b8;
    --input-disabled-bg: #f8fafc;
    --input-disabled-text: #64748b;

    /* 卡片 */
    --card-bg: #ffffff;
    --card-border: #e2e8f0;

    /* 通知 */
    --notification-success-bg: #dcfce7;
    --notification-success-text: #166534;
    --notification-error-bg: #fee2e2;
    --notification-error-text: #991b1b;
    --notification-info-bg: #e0f2fe;
    --notification-info-text: #075985;

    /* 滚动条 */
    --scrollbar-track: #f1f5f9;
    --scrollbar-thumb: #cbd5e1;
    --scrollbar-thumb-hover: #94a3b8;
} 