.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.tab {
    padding: 10px 18px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
}

    .tab.active {
        border-bottom: 3px solid #9D2235;
        font-weight: bold;
    }

.tab-content {
    padding-top: 15px;
}

.report-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
}

    .report-card h3 {
        margin-top: 0;
        margin-bottom: 8px;
    }
