/* ════ GLOBAL LAYOUT ════ */
.report-empty-section {
    min-height: 60svh;
    display: flex;
    align-items: center;
}

.report-back-btn {
    text-decoration: none;
    display: inline-block;
}

.report-list-section {
    min-height: 60svh;
    padding: 40px 20px;
}

.report-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ════ SUMMARY CARDS ════ */
.report-summary-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.report-summary-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon.icon-green {
    background: rgba(42, 157, 143, 0.1);
    color: #2A9D8F;
}

.summary-icon.icon-blue {
    background: rgba(71, 110, 250, 0.1);
    color: #476EFA;
}

.summary-text {
    display: flex;
    flex-direction: column;
}

.report-summary-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
}

.report-summary-value {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

/* ════ LIST HEADER ════ */
.report-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 16px;
}

.report-list-title {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.report-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

/* ════ REPORT CARDS ════ */
.report-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.report-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s ease;
}

.report-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.rc-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.report-card-title {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
}

.report-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
}

.report-card-dl-btn {
    text-decoration: none;
    background: #f8fafc;
    color: #476EFA;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.report-card-dl-btn:hover {
    background: #476EFA;
    color: #ffffff;
    border-color: #476EFA;
}

.report-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 24px;
}

/* ════ CARD STATS BOX ════ */
.report-card-stats-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f1f5f9;
}

.report-stat-item {
    flex: 1;
}

.report-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    margin: 0 20px;
}

.report-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}

.report-stat-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.report-stat-value.highlight {
    color: #E76F51;
}

/* ════ RESPONSIVE ════ */
@media (max-width: 576px) {
    .report-card-header {
        flex-direction: column;
    }

    .report-card-dl-btn {
        width: 100%;
        justify-content: center;
    }

    .report-card-stats-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .report-stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

/* Category Badges */
.badge-category {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

.badge-category.cat-edu {
    background: rgba(71, 110, 250, 0.1);
    color: #476EFA;
}

.badge-category.cat-env {
    background: rgba(42, 157, 143, 0.1);
    color: #2A9D8F;
}

.badge-category.cat-hum {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}