.report-permission-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.report-section {
    margin-bottom: 24px;
}

.report-section-header {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.report-filter-bar {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 22px;
    padding: 18px 20px;
}

.report-filter-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 280px));
    gap: 16px;
}

.report-filter-fields .form-group {
    margin-bottom: 0;
}

.report-filter-actions {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.report-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 16px;
    margin: 18px 0 22px;
}

.report-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.report-panel {
    border: 1px solid #dbe7f6;
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}

.report-panel-title {
    color: #111827;
    font-weight: 800;
    margin-bottom: 14px;
}

.report-row {
    align-items: center;
    border-bottom: 1px solid #e8eef7;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
}

.report-row:last-child {
    border-bottom: 0;
}

.report-row-stack strong,
.report-row-stack span {
    display: block;
}

.report-row-stack span {
    color: #64748b;
    font-size: 12px;
    margin-top: 3px;
}

@media (max-width: 1100px) {
    .report-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .report-filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .report-filter-fields {
        grid-template-columns: 1fr;
    }

    .report-stat-grid,
    .report-grid-two {
        grid-template-columns: 1fr;
    }

    .report-section-header {
        align-items: stretch;
        flex-direction: column;
    }

    .report-row {
        align-items: flex-start;
        flex-direction: column;
    }
}
