/* WAPSCD 2026 后台管理系统 — 自定义样式 */

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 表单聚焦 */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* 表格行高亮 */
table tbody tr {
    transition: background-color 0.15s ease;
}

/* 按钮过渡 */
button, a {
    transition: all 0.15s ease;
}

/* 侧边栏徽标 */
.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
