/* 自定义样式 */
body {
    font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* 卡片样式 */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

/* 侧边栏样式 */
.list-group-item.active {
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-item i {
    width: 20px;
    margin-right: 8px;
}

/* 表格样式 */
.table th {
    border-top: none;
    background-color: #f8f9fa;
}

/* 分页样式 */
.pagination {
    margin: 0;
}

/* 表单样式 */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* 必填项标记 */
.text-danger {
    color: #dc3545 !important;
}

/* 页脚样式 */
.footer {
    border-top: 1px solid #e9ecef;
    margin-top: 50px;
}

/* 统计卡片 */
.bg-primary {
    background-color: #007bff !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

/* 按钮间距 */
.btn + .btn {
    margin-left: 5px;
}

/* 打印样式 */
@media print {
    .no-print {
        display: none !important;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .list-group {
        margin-bottom: 20px;
    }
}
