﻿.report-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.report-section {
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #f9f9f9;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px;
    min-width: 300px;
    flex-basis: 100%;
    overflow-x: auto;
}

@media (min-width: 1000px) {
    .report-section {
        flex-basis: 48%;
    }
}

.report-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.full-width {
    flex-basis: 100%;
}

.report-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.half-width {
    flex: 1;
    min-width: 300px;
}


.report-table {
    width: 100%;
    border-collapse: collapse;
}

    .report-table th, .report-table td {
        padding: 8px;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.report-table th {
    background-color: #f2f2f2;
}
