/* ===== 蓝色垂直滚动条样式 ===== */
/* 应用到所有表单界面，统一滚动条视觉风格 */
/* 蓝色主题：#2563eb（主色） / #1d4ed8（悬停） / #f8fafc（轨道） */

/* Webkit 浏览器（Chrome / Safari / Edge） */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
    transition: background 0.2s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

*::-webkit-scrollbar-thumb:active {
    background: #1e40af;
}

*::-webkit-scrollbar-corner {
    background: #f8fafc;
}

/* Firefox 浏览器 */
* {
    scrollbar-width: thin;
    scrollbar-color: #2563eb #f8fafc;
}
