.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.reports-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 220px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.reports-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: #1d4ed8;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
}

.reports-card-body h4 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.reports-card-body p {
    margin: 0;
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.45;
}

.reports-card-actions {
    margin-top: auto;
}

.reports-wizard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reports-steps {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.reports-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
}

.reports-step span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    font-size: 0.8rem;
    font-weight: 600;
}

.reports-step small {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.72rem;
}

.reports-step.is-active {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb inset;
}

.reports-step.is-active span {
    background: #2563eb;
    color: #fff;
}

.reports-step.is-done span {
    background: #059669;
    color: #fff;
}

.reports-wizard-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.25rem;
    min-height: 320px;
}

.reports-wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.reports-type-grid,
.reports-audience-grid,
.reports-sections-grid,
.reports-detail-grid {
    display: grid;
    gap: 0.75rem;
}

.reports-type-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.reports-type-option,
.reports-detail-option {
    text-align: left;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 0.9rem;
}

.reports-type-option.is-selected,
.reports-detail-option.is-selected {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb inset;
}

.reports-type-option strong,
.reports-detail-option strong {
    display: block;
}

.reports-type-option small {
    color: #6b7280;
}

.reports-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reports-audience-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.reports-audience-option,
.reports-section-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
}

.reports-sections-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.reports-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reports-format-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: #fef2f2;
    color: #b91c1c;
    font-weight: 600;
}

.reports-preview {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
}

.reports-preview-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.reports-preview-kpi {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
}

.reports-preview-kpi small {
    display: block;
    color: #6b7280;
}

.reports-preview-narrative {
    background: #fff;
    border-left: 4px solid #2563eb;
    padding: 0.75rem 1rem;
    margin: 0.75rem 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .reports-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reports-detail-grid {
        grid-template-columns: 1fr;
    }
}
