.report-cards {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.report-card {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 12px 16px;
    flex: 1 1 180px;
    max-width: 200px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.report-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.report-card strong {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
    min-height: 35px;
}

.report-card .value {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

@media (max-width: 768px) {
    .report-card {
        flex: 1 1 calc(100% / 2 - 50px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .report-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 1025px) {
    .report-card {
        flex: 1 1 calc(20% - 15px);
    }
}