.report-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.report-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium+ screens */
    }
}

.report-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s ease;
    max-width: 600px;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.report-info {
    flex: 1;
}

.report-name {
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
    color: #222;
}

.report-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.75rem;
}

.report-download {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.report-download:hover {
    background-color: #357ab8;
}
