@charset "UTF-8";

/* 深色模式基础样式 */
html.dark-mode body {
    background-color: var(--color-background) !important;
}

html.dark-mode .content,
html.dark-mode #main-content {
    background-color: var(--color-content-background) !important;
    box-shadow: var(--shadow-md) !important;
}

/* 文本颜色 */
body {
    color: var(--color-text-primary) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-primary) !important;
}

/* 链接样式 */
a {
    color: var(--color-text-primary) !important;
    text-decoration: none !important;
}

a:hover {
    text-decoration: underline !important;
}

/* 按钮基础样式 */
button {
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
}
