.sustainability-report-card {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
        display: flex;
        flex-direction: column;
    }

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

    .card-img-top {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .card-body {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        flex-grow: 1;
    }

    .report-info {
        color: rgb(22, 85, 129);
        font-weight: bold;
        flex: 1;
        text-align: left;
        margin-right: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .download-btn {
        width: 45px;
        height: 45px;
        background-color: #007bff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .download-btn:hover {
        background-color: #ffffff;
        color: #007bff;
        transform: scale(1.05);
    }
