/* 全局滚动条样式 - 统一灰色风格，适配所有子页面 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 15, 25, 0.9);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(80, 80, 100, 0.7);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 100, 120, 0.9);
}

::-webkit-scrollbar-corner {
    background: rgba(15, 15, 25, 0.9);
}

::-webkit-scrollbar-button {
    background: rgba(60, 60, 80, 0.5);
    border-radius: 5px 5px 0 0;
}

::-webkit-scrollbar-button:hover {
    background: rgba(80, 80, 100, 0.7);
}

/* Firefox 滚动条 */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 80, 100, 0.7) rgba(15, 15, 25, 0.9);
}
