.reports-page {
    padding: 30px 0 60px;
}

.reports-header {
    margin-bottom: 18px;
}

    .reports-header h2 {
        color: #1a3560;
        font-weight: 700;
        margin: 0;
    }

.reports-group {
    margin-bottom: 28px;
}

    .reports-group h3 {
        color: #1253ca;
        font-weight: 700;
        font-size: 1.1em;
        margin: 0 0 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid #e5e9f2;
    }

.reports-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-left: 4px solid #1ab394;
    border-radius: 8px;
    padding: 14px 18px;
    box-shadow: 0 2px 8px rgba(26,53,96,0.05);
}

.report-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f7fb;
    color: #1253ca;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.report-name {
    flex: 1 1 auto;
    color: #444;
    font-weight: 500;
}

.report-download {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a3560;
    color: #fff;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .report-download:hover,
    .report-download:focus {
        background: #1253ca;
        color: #fff;
        text-decoration: none;
    }

@media (max-width: 600px) {
    .report-item {
        flex-wrap: wrap;
    }

    .report-name {
        flex: 1 1 100%;
    }
}
