/* ── TWO-COLUMN LAYOUT ───────────────────────────────────── */

.reports-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: start;
}

.reports-generator {
    grid-column: 1;
}

.reports-guide {
    grid-column: 2;
}

@@media (max-width: 840px) {
    .reports-layout {
        grid-template-columns: 1fr;
    }
}

/* ── GENERATE BUTTON SPINNER ─────────────────────────────── */

.reports-generate-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    min-width: 160px;
}

.reports-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: reports-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@@keyframes reports-spin {
    to { transform: rotate(360deg); }
}

/* ── GUIDE CARD ──────────────────────────────────────────── */

.report-guide-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    gap: 0.75rem;
    text-align: center;
    color: #6b7a99;
    font-size: 0.85rem;
}

.report-guide-icon {
    font-size: 2rem;
    line-height: 1;
}

.report-guide-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.report-guide-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2236;
    letter-spacing: -0.01em;
}

.report-guide-desc {
    font-size: 0.83rem;
    color: #6b7a99;
    line-height: 1.6;
    margin: 0;
}

.report-guide-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b6aaa;
    margin-top: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e8eef8;
}

.report-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.report-guide-list li {
    font-size: 0.82rem;
    color: #2d3a55;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-guide-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2563eb;
    flex-shrink: 0;
}
