/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 28 2025 | 23:56:57 */
.project-reports-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.report-card {
    width: 30%;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.report-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.report-content {
    padding: 20px;
    text-align: center;
}

.report-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.report-version {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.report-download {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.report-download:hover {
    background-color: #005f8d;
}

.pagination {
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

.pagination a,
.pagination span {
    display: inline-block;
    margin: 0 6px;
    padding: 10px 16px;
    background-color: #eee;
    color: #333;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination .current {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .report-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .report-card {
        width: 100%;
    }
}
