/* Report block layout */
.report-block {
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.2);
}

/* Report image */
.report-image {
    width: 100px;
    height: 140px;
    object-fit: contain;
    margin-right: 1rem;
}

/* Report text & button */
.report-title {
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.download-btn {
    background-color: #4CB748;
    border: none;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
    background-color: #00796b;
    transform: scale(1.05);
}

.download-btn:active {
    transform: scale(0.95);
}

.banner img {
    width: 100%;
    height: auto;
}

.btn-success {
    background: #4CB748 !important;
    color: white !important;
}

.btn-outline-success {
    border: 1px solid #4CB748 !important;
    color: #4CB748;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .report-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .report-image {
        margin: 0 0 1rem 0;
        width: 100%;
        height: auto;
    }

    .download-btn {
        width: 100%;
    }
}