.report-grid {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .report-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1280px) {
    .report-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.report-grid-item button {
    border: 1.5px solid #e5e7eb;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    font-weight: 500;
    background-color: white;
    font-size: 14px;
    text-align: left;
    transition: all 0.15s ease;
    cursor: pointer;
    color: #374151;
}

.report-grid-item button svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    color: #ea580c;
}

@media (min-width: 640px) {
    .report-grid-item button {
        padding: 18px 20px;
        font-size: 15px;
    }
}

.report-grid-item button:hover {
    border-color: #f8ac8c;
    background-color: #fff7ed;
    box-shadow: 0 2px 8px rgba(234,88,12,0.08);
}

.report-grid-item button:active {
    transform: scale(0.98);
}

.fi-wi-stats-overview-stats-ctn:has(.sync-stat) {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.sync-stat {
    padding: 0.75rem !important;
}

.sync-stat .fi-wi-stats-overview-stat-value {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.sync-stat .fi-wi-stats-overview-stat-label {
    font-size: 0.75rem !important;
}

.recipal-badge .fi-ta-text .flex.max-w-max {
    max-width: 100% !important;
    justify-content: center !important;
}
