/* report-progress.css — the per-stage progress list.
   Colours come from the --gxr-* block in report-assistant.css, which is also
   where @keyframes gxReportSpin is defined — the .is-active rule below
   consumes it, so the two files must stay together. */

.gx-report-progress-step {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: start;
    padding: 7px 2px;
    color: var(--gxr-muted, #6b7280);
    font-size: 12px;
    line-height: 1.35;
}

.gx-report-progress-icon {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid var(--gxr-border, #e5e7eb);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font: 600 10px Inter, sans-serif;
    background: var(--gxr-surface, #fff);
}

.gx-report-progress-step.is-done { color: var(--gxr-accent-ink, #2f9c58); }
.gx-report-progress-step.is-done .gx-report-progress-icon {
    background: var(--gxr-accent, #2f9c58);
    border-color: var(--gxr-accent, #2f9c58);
    color: #fff;
}

.gx-report-progress-step.is-active {
    color: var(--gxr-ink, #1a1d20);
    font-weight: 600;
}

.gx-report-progress-step.is-active .gx-report-progress-icon {
    border: 2px solid var(--gxr-border, #e5e7eb);
    border-top-color: var(--gxr-accent, #2f9c58);
    animation: gxReportSpin .8s linear infinite;
}
