.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.report-section {
    background: var(--surface-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.report-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.report-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 16px;
}

.report-actions {
    display: flex;
    gap: 12px;
    margin-top: auto; /* Pushes buttons to the bottom */
}

.report-actions .btn {
    flex-grow: 1; /* Makes buttons fill the space */
}

.btn-info {
    background-color: #3b82f6;
    color: white;
}
.btn-info:hover {
    background-color: #2563eb;
}


@media (max-width: 768px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
}
