﻿body {
    font-size: 15px;
    background: #f8f9fa;
}

h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* 下拉框适配 */
.filter-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

select.form-control {
    width: auto;
    min-width: 140px;
}

/* 表格容器滚动 */
.table-responsive {
    margin-top: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

/* 表格在移动端字体缩小一点 */
@media (max-width: 768px) {
    table .table td, table.table th {
        white-space: nowrap;
        font-size: 14px;
    }

    /* 表头固定更紧凑 */
    th {
        font-size: 13px;
    }

    /* 容器减少左右空白 */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
