/* 统计报表样式（简版，演示用） */
.reports-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.reports-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reports-tabs {
    border-bottom: 1px solid var(--border-color, #eee);
    margin-bottom: 12px;
}

.reports-tabs .nav-link {
    padding: 8px 12px;
}

.reports-section h6 {
    font-weight: 600;
}

.export-hint {
    font-size: 12px;
    color: #888;
}

