/* 默认浅色主题 */
:root {
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --heading-color: #000;
    --accent-color: #4a90e2;
    --border-color: #dee2e6;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --sidebar-bg: #f1f3f5;
    --hover-bg: #e9ecef;
    --muted-bg: #e9ecef;
    --muted-text: #6c757d;
    --input-bg: #ffffff;
    --button-bg: transparent;
    --button-text: var(--accent-color);
    --status-present: #28a745;
    --status-late: #fd7e14;
    --status-absent: #dc3545;
    --status-leave: #17a2b8;
}

/* 深色主题 */
[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --accent-color: #58a6ff;
    --border-color: #30363d;
    --card-bg: #1c1c1c;
    --header-bg: #1c1c1c;
    --sidebar-bg: #212121;
    --hover-bg: #2c2c2c;
    --muted-bg: #333;
    --muted-text: #888;
    --input-bg: #2c2c2c;
    --button-bg: #212121;
    --button-text: var(--accent-color);
    --status-present: #238636;
    --status-late: #e36209;
    --status-absent: #da3633;
    --status-leave: #388bfd;
}

/* 黑板绿/学院蓝 主题 */
[data-theme="chalkboard"] {
    --bg-color: #004146; /* 深绿背景 */
    --text-color: #f0e6d2; /* 粉笔白 */
    --heading-color: #ffffff;
    --accent-color: #f9a620; /* 亮黄色点缀 */
    --border-color: #4a7c59;
    --card-bg: #005358;
    --header-bg: #00353a;
    --sidebar-bg: #00353a;
    --hover-bg: #006064;
    --muted-bg: #005358;
    --muted-text: #a0b9b5;
    --input-bg: #005358;
    --button-bg: #00353a;
    --button-text: var(--accent-color);
    --status-present: #5cb85c;
    --status-late: #f0ad4e;
    --status-absent: #d9534f;
    --status-leave: #5bc0de;
}

