/* 全局基础色彩定义 */
body {
    background-color: #1e1e1e;
    color: #cccccc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 独立高仿 VSCode 滚动条美化 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
    background: #3e3e3e;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4f4f4f;
}

/* 侧边栏收缩动画效果 */
#sidebar {
    transition: width 0.15s ease-in-out;
    overflow: hidden;
}

/* 竞赛等宽代码字体声明 */
.code-font {
    font-family: Consolas, 'Courier New', monospace;
}
