/* 班主任工作平台 · 自定义样式 */
:root {
    --bzr-primary: #1e3a8a;  /* 深蓝主色 */
    --bzr-accent:  #f59e0b;  /* 强调色 */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Microsoft YaHei", sans-serif;
    background: #f5f7fa;
}

.navbar-brand {
    font-weight: 600;
}

/* 移动端表格优化：横向滚动 */
.table-responsive {
    -webkit-overflow-scrolling: touch;
}

/* 响应式字号 */
@media (max-width: 576px) {
    .display-6 { font-size: 1.5rem; }
    h5 { font-size: 1.1rem; }
}

/* 状态色块 */
.badge-pass { background: var(--bs-success); }
.badge-fail { background: var(--bs-danger); }
