/* RegCheck upload/decision wizard — relies on tokens from custom-styles.css */

.wizard-page {
    min-height: 100vh;
    background:
        radial-gradient(900px 480px at 50% -12%, rgba(58, 91, 192, 0.12), transparent 62%),
        var(--rc-bg) !important;
}

.wizard-page .cover-container {
    background: transparent;
}

.wizard-header {
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.wizard-main {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 0.75rem;
}

.wizard-page footer {
    padding-top: 0.35rem;
}

.wizard-main form {
    width: 100%;
}

.wizard {
    width: min(880px, 100%);
    margin: 0 auto;
    text-align: left;
}

/* progress ------------------------------------------------------------------ */
.wizard-progress {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.wizard-progress.is-hidden {
    visibility: hidden;
    height: 0;
    margin: 0;
}

.wizard-progress__track {
    flex: 1 1 auto;
    height: 0.4rem;
    border-radius: 999px;
    background: var(--rc-surface-3);
    overflow: hidden;
}

.wizard-progress__fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rc-accent), var(--rc-accent-strong));
    transition: width 0.32s ease;
}

.wizard-progress__count {
    flex: 0 0 auto;
    margin: 0;
    color: var(--rc-muted);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* panel --------------------------------------------------------------------- */
.wizard-panel {
    position: relative;
    background: var(--rc-panel);
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius-lg);
    box-shadow: var(--rc-shadow-md);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    min-height: 18rem;
}

/* dimensions step is content-dense: tighten the gap above its heading */
.wizard-panel:has(.dimensions-step.active) {
    padding-top: clamp(0.9rem, 1.6vw, 1.2rem);
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 0.55rem;
}

.form-step.active {
    display: flex;
    animation: wizard-fade 0.3s ease;
}

@keyframes wizard-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-heading {
    margin: 0;
    font-family: var(--rc-font-display);
    font-size: clamp(1.45rem, 1vw + 1.2rem, 2.05rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--rc-text);
}

.step-sub {
    margin: 0;
    max-width: 60ch;
    color: var(--rc-muted);
    line-height: 1.55;
    font-size: 0.95rem;
}

/* fields -------------------------------------------------------------------- */
.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.85rem;
}

.field--center {
    align-items: flex-start;
}

.field-label {
    margin: 0;
    color: var(--rc-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wizard-page .field .form-control {
    width: 100%;
    max-width: 26rem;
}

/* Text inputs (e.g. the ClinicalTrials.gov ID) — force light text + dark field.
   Some browsers otherwise render the input text black. */
.wizard-page input.form-control,
.wizard-page input[type="text"] {
    color: var(--rc-text);
    -webkit-text-fill-color: var(--rc-text);
    caret-color: var(--rc-text);
    background-color: var(--rc-surface-2);
    border: 1px solid var(--rc-border-strong);
    border-radius: var(--rc-radius-sm);
    padding: 0.55rem 0.75rem;
}
.wizard-page input.form-control::placeholder {
    color: var(--rc-faint);
    -webkit-text-fill-color: var(--rc-faint);
    opacity: 1;
}
.wizard-page input.form-control:focus {
    outline: none;
    border-color: var(--rc-accent);
    box-shadow: 0 0 0 1px var(--rc-border-strong);
}
.wizard-page input.form-control:disabled {
    opacity: 0.55;
    -webkit-text-fill-color: var(--rc-muted);
}

/* choice steps — two-column form row (question left, control right) --------- */
.form-step.choice-step.active {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3.25rem);
    align-items: center;
    min-height: 15rem;
}

.choice-step__text {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.choice-step__control {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.choice-step__control .field {
    margin-top: 0;
}

.choice-step__control .field .form-control {
    max-width: 100%;
}

@media (max-width: 720px) {
    .form-step.choice-step.active {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        min-height: 0;
        align-items: stretch;
    }
}

/* mode choice --------------------------------------------------------------- */
.mode-choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.mode-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
    padding: 1.2rem 1.25rem;
    border-radius: var(--rc-radius);
    border: 1px solid var(--rc-accent);
    background: var(--rc-accent-soft);
    color: var(--rc-text);
    cursor: pointer;
    transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

.mode-card--ghost {
    border-color: var(--rc-border);
    background: var(--rc-surface-2);
}

.mode-card:hover,
.mode-card:focus-visible {
    transform: translateY(-2px);
    border-color: var(--rc-accent-strong);
}

/* Chosen tile on the comparison-type step (revisited via Back). */
.mode-card.is-selected {
    border-color: var(--rc-accent-strong);
    box-shadow: 0 0 0 2px var(--rc-accent-soft);
}
.mode-card.is-selected .mode-card__cta::after {
    content: " \2713";
}

.mode-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rc-text);
}

.mode-card__desc {
    color: var(--rc-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.mode-card__cta {
    margin-top: 0.35rem;
    color: var(--rc-accent-strong);
    font-weight: 600;
    font-size: 0.85rem;
}


/* dimensions — two-pane editor (design handoff) ----------------------------- */
.dimensions-step .dim-head {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.tp2 {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: stretch;
    /* Fit the whole step in the viewport: shrink both panes together
       (left list scrolls, right editor shortens) instead of overflowing. */
    height: clamp(16rem, calc(100dvh - 29rem), 520px);
}

.tp2-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 0;
    overflow: visible;
    background: rgba(10, 14, 22, 0.45);
    border: 1px solid var(--rc-border);
    border-radius: 16px;
    padding: 12px;
}

.tp2-rows {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 2px;
    margin-bottom: 4px;
}

/* preset dropdown */
.preset { position: relative; width: 100%; margin-bottom: 8px; }

.preset-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    background: var(--rc-surface-2);
    border: 1px solid var(--rc-border-strong);
    color: var(--rc-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.preset-btn:hover { background: var(--rc-surface-3); }
.preset-btn .pb-cap {
    font-family: var(--rc-font-mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rc-faint);
}
.preset-btn .pb-cur { display: inline-flex; align-items: center; gap: 9px; }
.preset-btn .dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--rc-accent-strong);
    box-shadow: 0 0 0 3px var(--rc-accent-soft);
}
.preset-btn .chev { margin-left: auto; color: var(--rc-faint); transition: transform 0.18s ease; flex: none; }
.preset-btn.open .chev { transform: rotate(180deg); }

.preset-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--rc-surface);
    border: 1px solid var(--rc-border-strong);
    border-radius: 14px;
    box-shadow: var(--rc-shadow-lg);
    padding: 7px;
    animation: dim-pop 0.14s ease;
}
.preset-menu[hidden] { display: none; }

@keyframes dim-pop {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
}

.preset-menu .pm-cap {
    font-family: var(--rc-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rc-faint);
    padding: 9px 11px 7px;
}

.preset-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    padding: 11px 12px;
    border-radius: 9px;
    background: transparent;
    border: none;
    color: var(--rc-text);
    cursor: pointer;
    transition: background 0.12s ease;
}
.preset-opt:hover { background: var(--rc-surface-2); }
.preset-opt .po-ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--rc-surface-2);
    color: var(--rc-accent-strong);
    flex: none;
}
.preset-opt.on .po-ico { background: var(--rc-accent-soft); }
.preset-opt .po-text { display: flex; flex-direction: column; min-width: 0; }
.preset-opt .po-name { font-size: 14px; font-weight: 600; color: var(--rc-text); }
.preset-opt .po-meta { font-size: 12px; color: var(--rc-faint); margin-top: 1px; }
.preset-opt .po-check { margin-left: auto; color: var(--rc-accent-strong); opacity: 0; flex: none; }
.preset-opt.on .po-check { opacity: 1; }

/* number badge */
.tp2 .num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    flex: none;
    display: grid;
    place-items: center;
    font-family: var(--rc-font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--rc-on-accent);
    background: var(--rc-gradient-primary);
    box-shadow: 0 4px 12px -5px rgba(58, 91, 192, 0.8);
}

/* grip handle */
.grip {
    display: grid;
    grid-template-columns: repeat(2, 3px);
    gap: 3px;
    cursor: grab;
    padding: 4px 2px;
    flex: none;
}
.grip i { width: 3px; height: 3px; border-radius: 99px; background: var(--rc-faint); display: block; }
.grip:hover i { background: var(--rc-muted); }

/* delete icon button */
.icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    flex: none;
    display: grid;
    place-items: center;
    color: var(--rc-faint);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}
.icon-btn:hover { background: var(--rc-surface-2); color: var(--rc-text); border-color: var(--rc-border); }
.icon-btn.danger:hover { background: var(--rc-flag-bg); color: var(--rc-flag); border-color: var(--rc-flag-border); }
.icon-btn svg { width: 16px; height: 16px; }

/* list rows */
.tp-row {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 11px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: background 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}
.tp-row:hover { background: var(--rc-surface-2); }
.tp-row.sel { background: var(--rc-accent-soft); border-color: var(--rc-accent-line); }
.tp-row.drag-ghost { opacity: 0.4; }
.tp-row.is-over { box-shadow: inset 0 2px 0 var(--rc-accent-strong); }
.tp-row .grip { opacity: 0; transition: opacity 0.14s ease; }
.tp-row:hover .grip,
.tp-row.sel .grip { opacity: 1; }
.tp-row .tp-name {
    flex: 1;
    min-width: 0;
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tp-name--empty { color: var(--rc-faint); }
.tp-row .tp-del { opacity: 0; }
.tp-row:hover .tp-del { opacity: 1; }

/* add dimension */
.add-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    white-space: nowrap;
    margin-top: 4px;
    padding: 12px;
    border-radius: 13px;
    color: var(--rc-muted);
    font-size: 14.5px;
    font-weight: 700;
    border: 1.5px dashed var(--rc-border-strong);
    background: transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.add-row:hover { border-color: var(--rc-accent-line); color: var(--rc-text); background: var(--rc-accent-soft); }
.add-row svg { width: 17px; height: 17px; flex: none; }

/* detail pane — quiet editor */
.tp2-detail {
    background: var(--rc-surface-2);
    border: 1px solid var(--rc-border);
    border-radius: 16px;
    padding: 26px 30px 28px;
    box-shadow: var(--rc-shadow-md);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 0;
}
.tp2-detail.tp-empty {
    align-items: center;
    justify-content: center;
    color: var(--rc-muted);
    text-align: center;
    gap: 6px;
}
.tp2-detail.tp-empty svg { width: 34px; height: 34px; opacity: 0.5; }

.td2-top { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.td2-top .num { width: 32px; height: 32px; border-radius: 10px; font-size: 13.5px; }
.td2-meta {
    font-family: var(--rc-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rc-faint);
    white-space: nowrap;
}

.q-name {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--rc-text);
    font-family: var(--rc-font-sans);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 5px 9px;
    border-radius: 9px;
    margin-left: -9px;
    transition: background 0.14s ease, box-shadow 0.14s ease;
}
.q-name::placeholder { color: var(--rc-faint); }
.q-name:hover { background: var(--rc-surface-3); }
.q-name:focus { outline: none; background: var(--rc-surface-3); box-shadow: 0 0 0 1px var(--rc-border-strong); }

.q-def {
    display: block;
    width: 100%;
    flex: 1 1 auto;
    min-height: 4rem;
    margin-top: 6px;
    margin-left: -9px;
    background: transparent;
    border: none;
    resize: none;
    overflow-y: auto;
    color: var(--rc-muted);
    font-family: var(--rc-font-sans);
    font-size: 13.5px;
    line-height: 1.6;
    padding: 7px 9px;
    border-radius: 9px;
    transition: background 0.14s ease, box-shadow 0.14s ease, color 0.14s ease;
}
.q-def::placeholder { color: var(--rc-faint); }
.q-def:hover { background: var(--rc-surface-3); }
.q-def:focus { outline: none; background: var(--rc-surface-3); color: var(--rc-text); box-shadow: 0 0 0 1px var(--rc-border-strong); }

@media (max-width: 920px) {
    .tp2 { grid-template-columns: 1fr; height: auto; }
    .tp2-rows { max-height: 340px; }
    .tp2-detail { overflow: visible; }
}

/* uploads ------------------------------------------------------------------- */
/* Quality flow: one document, one centred dropzone. */
.upload-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
    align-items: stretch;
}

.upload-slot {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.upload-branch[hidden] {
    display: none;
}

.dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    min-height: 11rem;
    padding: 1.5rem 1.1rem;
    border: 1.5px dashed var(--rc-border-strong);
    border-radius: var(--rc-radius);
    background: var(--rc-surface-2);
    color: var(--rc-text);
    cursor: pointer;
    transition: border-color 0.14s ease, background 0.14s ease;
}

.dropzone:hover {
    border-color: var(--rc-accent);
    background: var(--rc-surface-3);
}

.dropzone.is-dragover {
    border-color: var(--rc-accent);
    border-style: solid;
    background: var(--rc-accent-soft);
}

.dropzone.has-file {
    border-style: solid;
    border-color: var(--rc-accent);
}

.dropzone.has-error {
    border-style: solid;
    border-color: var(--rc-flag);
}

.dropzone.has-error .dropzone__file {
    color: var(--rc-flag);
    font-weight: 600;
}

.dim-warning {
    color: var(--rc-flag);
    font-size: 0.85rem;
    margin: 0.4rem 0 0;
}

.dropzone__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone__icon {
    color: var(--rc-accent-strong);
}

.dropzone.has-file .dropzone__icon {
    color: var(--rc-ok);
}

.dropzone__title {
    font-size: 1rem;
    font-weight: 600;
}

.dropzone__hint {
    color: var(--rc-faint);
    font-size: 0.8rem;
}

.dropzone.has-file .dropzone__hint {
    display: none;
}

.dropzone__file {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.82rem;
    color: var(--rc-muted);
}

.dropzone.has-file .dropzone__file {
    color: var(--rc-text);
    font-weight: 600;
}

.dropzone__note {
    margin: 0;
    text-align: center;
    color: var(--rc-faint);
    font-size: 0.78rem;
}

.clinical-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 11rem;
    height: 100%;
    justify-content: center;
    padding: 1.5rem 1.3rem;
    border: 1px solid var(--rc-border-strong);
    border-radius: var(--rc-radius);
    background: var(--rc-surface-2);
}

.clinical-input .field-label {
    text-align: center;
}

/* fallback ------------------------------------------------------------------ */
/* Hidden on every load. An inline script in the template adds .is-late after a
   grace period; wizard.js adds .is-armed on init, which wins. So the note shows
   only when wizard.js was blocked/crashed — or when the interference guard
   force-reveals it inline. */
.wizard-fallback {
    display: none;
    margin: 0 0 1rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--rc-warn-border, #b58900);
    border-radius: 0.5rem;
    background: var(--rc-warn-bg, rgba(181, 137, 0, 0.12));
    color: var(--rc-text, inherit);
    font-size: 0.95rem;
}

.wizard-fallback.is-late {
    display: block;
}

.wizard-fallback.is-armed {
    display: none !important;
}

/* nav ----------------------------------------------------------------------- */
.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.wizard-nav .btn {
    min-width: 8rem;
}

.wizard-nav .is-hidden {
    display: none;
}

.wizard-nav #step-forward,
.wizard-nav #app-compare-btn {
    margin-left: auto;
}

.wizard-page .btn-ghost {
    background: var(--rc-surface-2);
    border: 1px solid var(--rc-border);
    color: var(--rc-text);
}

.wizard-page .btn-ghost:hover,
.wizard-page .btn-ghost:focus {
    background: var(--rc-surface-3);
    border-color: var(--rc-border-strong);
    color: var(--rc-text);
}

.wizard-page #app-compare-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

/* control character --------------------------------------------------------- */
.wizard-page .form-control,
.wizard-page .form-select {
    background-color: var(--rc-surface);
    border: 1px solid var(--rc-border-strong);
    border-radius: 10px;
    font-size: 0.98rem;
    transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.wizard-page .form-control {
    padding: 0.7rem 0.95rem;
}

.wizard-page select.form-control,
.wizard-page .form-select {
    padding: 0.7rem 2.2rem 0.7rem 0.95rem;
    background-color: var(--rc-surface);
    cursor: pointer;
}

.wizard-page .form-control:hover,
.wizard-page .form-select:hover {
    border-color: var(--rc-accent);
}

.wizard-nav .btn {
    padding: 0.72rem 1.5rem;
    font-weight: 600;
}

.wizard-nav .btn-primary {
    background: var(--rc-gradient-primary);
    border: none;
    color: var(--rc-on-accent);
    box-shadow: 0 6px 16px rgba(58, 91, 192, 0.28);
}

.wizard-nav .btn-primary:hover,
.wizard-nav .btn-primary:focus {
    color: var(--rc-on-accent);
    box-shadow: 0 10px 22px rgba(58, 91, 192, 0.36);
    transform: translateY(-1px);
}

/* responsive ---------------------------------------------------------------- */
@media (max-width: 720px) {
    .wizard-panel {
        padding: 1.15rem 1rem;
    }

    .mode-choice,
    .upload-grid {
        grid-template-columns: 1fr;
    }

    .wizard-page .field .form-control {
        max-width: 100%;
    }

    .wizard-nav .btn {
        min-width: 0;
        flex: 1 1 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .form-step.active { animation: none; }
    .wizard-progress__fill { transition: none; }
    .preset-menu { animation: none; }
    .mode-card,
    .dropzone,
    .tp-row,
    .preset-btn,
    .add-row,
    .icon-btn { transition: none; }
}

/* small uppercase labels — Spline Sans Mono */
.wizard-progress__count,
.field-label {
    font-family: var(--rc-font-mono);
}

/* Pre-flight "thin registration" confirmation modal (#5: warn, never block). */
.rc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}
.rc-modal {
    width: 100%;
    max-width: 30rem;
    background: var(--rc-panel);
    border: 1px solid var(--rc-border-strong);
    border-radius: 14px;
    box-shadow: var(--rc-shadow-lg);
    padding: 1.4rem 1.5rem 1.25rem;
}
.rc-modal__title {
    margin: 0 0 0.7rem;
    font-size: 1.12rem;
    line-height: 1.3;
    color: var(--rc-text);
}
.rc-modal__body {
    margin: 0 0 0.7rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--rc-muted);
}
.rc-modal__body strong { color: var(--rc-text); }
.rc-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 1.1rem;
}
.btn.is-busy { opacity: 0.75; cursor: progress; }
