/* ============================================================
   Wizard rápido de evaluación grupal — employer-wizard.css
   Se apoya en los tokens (--ep-teal, --ep-radius, etc.) y en varias
   clases ya definidas por employer.css (.ep-btn-primary, .ep-input,
   .ep-field, .ep-drop-zone, .ep-import-table, .ep-alert) — este
   archivo solo agrega el layout propio del wizard (pasos, tarjetas).
   ============================================================ */

/* El panel de empleador (employer.css) usa --ep-teal:#1a7a6e como marca
   propia — acá lo pisamos solo dentro de #wz-root con el dark teal real del
   cotizador público (#0d5c63, más azulado y menos "verde") para que botones,
   bordes de foco y el glow de la tarjeta de precio queden coherentes con esa
   otra pantalla, sin afectar al resto del panel. */
#wz-root {
    --ep-teal: #0d5c63;
    --ep-teal-hover: #0a474d;
    --ep-teal-subtle: rgba(13,92,99,.07);
    /* Mismas variables que usan las clases .psico-* de booking.css (default
       #0f6466) — la agenda en lote fusionada acá debe verse igual de "marca"
       que el resto del wizard, no el teal genérico de agendamiento público. */
    --p-teal: #0d5c63;
    --p-dark: #0a474d;
}

/* Todo lo de acá (fondo full-bleed, ocultar header/footer del tema) es SOLO
   para el modo landing standalone (default). El modo embed
   ([empresa_wizard embed="1"], marcado con el body class
   .has-empresa-wizard-embed) se salta todo esto a propósito — la idea es que
   conviva dentro de una página normal, con su header/footer y ancho propios. */
body.has-empresa-wizard:not(.has-empresa-wizard-embed) {
    background: var(--ep-gray-50) !important;
    overflow-x: hidden;
    --wp--style--root--padding-left: 0px !important;
    --wp--style--root--padding-right: 0px !important;
    --wp--style--root--padding-top: 0px !important;
    --wp--style--root--padding-bottom: 0px !important;
}
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .wp-site-blocks,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .wp-block-post-content,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .entry-content,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .has-global-padding,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .is-layout-constrained,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) #primary,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) #content,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) main:not(.wz-main),
body.has-empresa-wizard:not(.has-empresa-wizard-embed) article,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .site-content,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .container {
    max-width: none !important;
    --wp--style--global--content-size: 100vw !important;
    --wp--style--global--wide-size: 100vw !important;
    width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
    float: none !important;
}
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .site-header,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) header.site-header,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) #masthead,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .site-footer,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) footer.site-footer,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) #colophon,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) nav.navbar,
body.has-empresa-wizard:not(.has-empresa-wizard-embed) .wp-block-template-part {
    display: none !important;
}

.wz-wrap {
    width: 100%;
    min-height: 100vh;
    font-family: var(--ep-font);
    color: var(--ep-gray-800);
    background: var(--ep-gray-50);
}
.wz-wrap * { box-sizing: border-box; }

/* ── Modo embed: tarjeta contenida dentro de una página normal ── */
.wz-wrap.wz-embed {
    min-height: 0;
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--ep-gray-200);
    border-radius: 22px;
    box-shadow: var(--ep-shadow);
    overflow: hidden;
}
.wz-embed .wz-topbar { padding: 18px 24px 14px; }
.wz-embed .wz-body { padding: 24px 24px 32px; }
.wz-embed .wz-success { margin: 40px auto; }

/* ── Barra superior compacta ── */
.wz-topbar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    padding: 14px max(20px, calc((100% - 860px) / 2)) 12px;
    border-bottom: 1px solid var(--ep-gray-100);
}
.wz-topbar__title { font-size: 14.5px; font-weight: 700; color: var(--ep-gray-800); }
.wz-topbar__step { font-size: 12px; font-weight: 600; color: var(--ep-gray-400); white-space: nowrap; }

/* ── Progreso (barra delgada, sin puntos) ── */
.wz-progress-bar { height: 3px; background: var(--ep-gray-100); }
.wz-progress-bar__fill { height: 100%; width: 25%; background: var(--ep-teal); transition: width .25s ease; }

/* ── Body / steps ── */
.wz-body { max-width: 860px; margin: 0 auto; padding: 28px 20px 80px; }
.wz-step { display: none; }
.wz-step.is-active { display: block; animation: wz-fade .2s ease; }
@keyframes wz-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.wz-step__title { font-family: 'Cardo', serif; font-size: 24px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 4px; }
.wz-step__subtitle { font-size: 13.5px; color: var(--ep-gray-600); margin: 0 0 20px; }
.wz-step__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; }
.wz-step__error { font-size: 12.5px; color: #ef4444; font-weight: 600; }
.wz-back-btn { flex-shrink: 0; }

/* ── Cabecera del paso 1 (título + botón importar) ── */
.wz-step__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.wz-step__head .wz-step__title { margin-bottom: 2px; }
.wz-step__head .wz-step__subtitle { margin-bottom: 0; }
@media (max-width: 560px) { .wz-step__head { flex-direction: column; } }

.wz-import-btn {
    display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
    background: #fff; border: 1.5px solid var(--ep-gray-200); color: var(--ep-gray-700);
    font-family: var(--ep-font); font-size: 12.5px; font-weight: 700;
    padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: all .15s;
}
.wz-import-btn:hover { border-color: var(--ep-teal); color: var(--ep-teal); }

.wz-add-row-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 1px dashed var(--ep-gray-300); color: var(--ep-gray-600);
    font-family: var(--ep-font); font-size: 12.5px; font-weight: 700;
    padding: 8px 14px; border-radius: var(--ep-radius-sm); cursor: pointer;
    margin-top: 8px; width: 100%; justify-content: center; transition: all .15s;
}
.wz-add-row-btn:hover { border-color: var(--ep-teal); color: var(--ep-teal); background: var(--ep-teal-subtle); }

/* ── Modal importar (paso 1) ── */
.ep-modal.wz-modal--import {
    width: min(520px, 92vw);
    max-width: none;
    padding: 0;
    text-align: left;
    border-radius: 16px;
    overflow: hidden;
}
.wz-import-modal-body { padding: 20px 24px 24px; }
.wz-import-step { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--ep-gray-50); border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius-sm); margin-bottom: 12px; }
.wz-import-step:last-child { margin-bottom: 0; }
.wz-import-step__num { width: 26px; height: 26px; border-radius: 50%; background: var(--ep-teal); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wz-import-step__title { font-size: 13.5px; font-weight: 700; color: var(--ep-gray-800); margin: 0 0 3px; }
.wz-import-step__desc { font-size: 12px; color: var(--ep-gray-600); margin: 0 0 10px; }
.wz-error-text { font-size: 12px; color: #ef4444; font-weight: 600; margin-top: 8px; }

/* ── Roster (tabla siempre visible) ── */
#wz-root .ep-import-table-wrap { max-height: none; border-radius: 12px; }
#wz-root .ep-import-table { font-size: 13.5px; }
#wz-root .ep-import-table thead th { padding: 12px 12px; font-size: 11.5px; }
#wz-root .ep-import-table tbody td { padding: 7px 8px; }

.wz-roster-row-del { background: none; border: none; color: var(--ep-gray-400); cursor: pointer; padding: 6px; border-radius: 6px; }
.wz-roster-row-del:hover { background: #fef2f2; color: #ef4444; }
.wz-roster-input {
    width: 100%; border: 1px solid var(--ep-gray-200); background: #fff;
    font-family: var(--ep-font); font-size: 13.5px; padding: 9px 10px;
    border-radius: 7px; color: var(--ep-gray-800); transition: border-color .12s, box-shadow .12s;
}
.wz-roster-input::placeholder { color: var(--ep-gray-300); }
.wz-roster-input:hover { border-color: var(--ep-gray-300); }
.wz-roster-input:focus { border-color: var(--ep-teal); box-shadow: 0 0 0 3px var(--ep-teal-subtle); outline: none; }
.wz-roster-input.is-invalid { border-color: #fca5a5; background: #fef2f2; }
.wz-roster-input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

/* ── Tooltip en encabezado de tabla (Teléfono) ── */
.wz-th-label { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; }
.wz-th-tip { position: relative; display: inline-flex; align-items: center; color: var(--ep-gray-300); cursor: default; }
.wz-th-tip:hover { color: var(--ep-teal); }
.wz-th-tip__box {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: #1e293b;
    color: #f8fafc;
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
    padding: 9px 12px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    z-index: 40;
    white-space: normal;
    pointer-events: none;
}
.wz-th-tip__box::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #1e293b;
}
.wz-th-tip:hover .wz-th-tip__box { display: block; }

/* ── Tarjeta de tip (pegar desde Excel), cerrable ── */
.wz-roster-tip {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--ep-teal-subtle); border: 1px solid rgba(13,92,99,.15);
    border-radius: var(--ep-radius-sm); padding: 12px 14px; margin-top: 12px;
}
.wz-roster-tip__icon { color: var(--ep-teal); flex-shrink: 0; margin-top: 1px; }
.wz-roster-tip__text { flex: 1; font-size: 12.5px; color: var(--ep-gray-700); margin: 0; line-height: 1.5; }
.wz-roster-tip__close {
    flex-shrink: 0; background: none; border: none; color: var(--ep-gray-400);
    font-size: 18px; line-height: 1; cursor: pointer; padding: 0 2px; border-radius: 4px;
}
.wz-roster-tip__close:hover { color: var(--ep-gray-700); background: rgba(0,0,0,.06); }

/* ── Inputs/selects más grandes en todo el wizard (mismo espíritu que el
   formulario público del cotizador: campos generosos, fondo gris suave,
   radios más redondeados) — se pisa .ep-input solo dentro de #wz-root para
   no tocar el resto del panel de empleador, que comparte esa clase. ── */
#wz-root .ep-input {
    padding: 13px 16px;
    border-radius: 12px;
    background: var(--ep-gray-50);
    font-size: 14.5px;
    border: 1px solid var(--ep-gray-200);
}
#wz-root .ep-input:focus { background: #fff; box-shadow: 0 0 0 3px var(--ep-teal-subtle); }
#wz-root select.ep-input {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%239ca3af' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
#wz-root .wz-label { font-size: 12px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--ep-gray-500); margin-bottom: 8px; }

/* Botones y tarjetas un poco más redondeados en todo el wizard — mismo
   lenguaje "rounded-2xl" que usa el cotizador público. */
#wz-root .ep-btn-primary,
#wz-root .ep-btn-secondary { border-radius: 14px; padding: 13px 20px; font-size: 14.5px; }
/* .ep-btn-primary trae width:100% de employer.css (pensado para modales
   angostos) — dentro del footer del wizard eso lo estiraba a lo ancho de
   toda la fila junto al botón "Atrás", viéndose como una barra larga en vez
   de un botón. Acá vuelve a su ancho natural, alineado a la derecha por el
   space-between del footer. En mobile vuelve a ocupar todo el ancho, más
   fácil de tocar. */
#wz-root .ep-btn-primary { width: auto; min-width: 200px; }
@media (max-width: 560px) {
    #wz-root .wz-step__footer { flex-direction: column; align-items: stretch; }
    #wz-root .wz-step__footer .ep-btn-primary,
    #wz-root .wz-step__footer .ep-btn-secondary { width: 100%; min-width: 0; }
}

/* ── Servicio (paso 2) — formulario a la izquierda, resumen fijo a la
   derecha, para aprovechar el ancho en vez de dejarlo en blanco. ── */
.wz-step2-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
@media (max-width: 680px) { .wz-step2-grid { grid-template-columns: 1fr; } }
.wz-service-form { display: flex; flex-direction: column; gap: 18px; }
.wz-check-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ep-gray-700); cursor: pointer; }
.wz-check-row input { width: 17px; height: 17px; accent-color: var(--ep-teal); cursor: pointer; }
/* Tarjeta oscura tipo "Propuesta de servicios" del cotizador público — mismo
   fondo navy + glow teal difuminado en la esquina, para que el resumen se
   sienta parte de la misma familia visual en vez de una caja blanca suelta. */
.wz-summary {
    position: sticky; top: 88px;
    background: #0f172a; border: 1px solid #1e293b; border-radius: 22px;
    padding: 26px 24px; overflow: hidden; color: #fff;
}
.wz-summary::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 170px; height: 170px; border-radius: 50%;
    background: var(--ep-teal); opacity: .35; filter: blur(50px);
    pointer-events: none;
}
.wz-summary__heading {
    font-family: 'Cardo', serif; font-size: 18px; font-weight: 700; color: #fff;
    margin: 0 0 16px; position: relative; z-index: 1;
}
.wz-summary__rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.wz-summary__row { display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; color: #cbd5e1; }
.wz-summary__total {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px;
}
.wz-summary__total-label { display: block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #94a3b8; margin-bottom: 6px; }
.wz-summary__total-value { display: block; font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.01em; }

/* ── Coordinación (paso 3) ── */
.wz-coord-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 640px) { .wz-coord-cards { grid-template-columns: 1fr; } }
.wz-coord-card {
    display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    background: #fff; border: 2px solid var(--ep-gray-200); border-radius: 16px;
    padding: 20px; cursor: pointer; text-align: left; transition: all .15s;
    font-family: var(--ep-font);
}
.wz-coord-card:hover { border-color: var(--ep-teal); box-shadow: var(--ep-shadow); }
.wz-coord-card.is-active { border-color: var(--ep-teal); background: var(--ep-teal-subtle); }
.wz-coord-card__icon { color: var(--ep-teal); }
.wz-coord-card__title { font-size: 13.5px; font-weight: 700; color: var(--ep-gray-800); }
.wz-coord-card__desc { font-size: 12px; color: var(--ep-gray-600); }

/* ── Empresa / login (paso 4) ── */
.wz-company-card { background: var(--ep-teal-subtle); border: 1px solid var(--ep-teal); border-radius: 16px; padding: 20px 22px; max-width: 560px; }
.wz-company-card__name { font-size: 16px; font-weight: 700; color: var(--ep-gray-800); }
.wz-company-card__meta { font-size: 12.5px; color: var(--ep-gray-600); margin-top: 4px; }

.wz-toggle { display: inline-flex; background: var(--ep-gray-100); border-radius: 999px; padding: 3px; margin-bottom: 20px; }
.wz-toggle__btn { border: none; background: none; padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ep-gray-600); cursor: pointer; font-family: var(--ep-font); }
.wz-toggle__btn.is-active { background: #fff; color: var(--ep-teal); box-shadow: 0 1px 3px rgba(0,0,0,.1); }

.wz-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; max-width: 640px; }
.wz-form-grid--2col { max-width: 480px; }
@media (max-width: 640px) { .wz-form-grid { grid-template-columns: 1fr; } }
.wz-lead-panel .ep-btn-secondary { margin-top: 4px; }
.wz-panel__hint { font-size: 12.5px; color: var(--ep-gray-600); margin: 10px 0 0; }

/* ── Confirmación ──
   display:flex + align-items:center (en vez de solo text-align:center)
   para que el ícono quede garantizado centrado sin depender de cómo el
   navegador trate el <svg> como elemento inline; .wz-success__card y
   .wz-success__next se estiran explícitamente al 100% del ancho de la
   columna (si no, un hijo flex se encoge a su contenido). */
.wz-success {
    max-width: 480px; margin: 60px auto; padding: 0 20px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.wz-success__icon { color: var(--ep-green); margin-bottom: 12px; display: flex; }
.wz-success__title { font-family: 'Cardo', serif; font-size: 26px; font-weight: 700; margin: 0 0 6px; }
.wz-success__subtitle { font-size: 13.5px; color: var(--ep-gray-600); margin: 0 0 22px; }
.wz-success__card { width: 100%; background: #fff; border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); padding: 20px; text-align: left; }
.wz-success__card-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; color: var(--ep-gray-600); }
.wz-success__card-row strong { color: var(--ep-gray-800); }
.wz-status-pill { display: inline-block; margin-top: 10px; padding: 5px 14px; border-radius: 999px; background: #fef3c7; color: #92400e; font-size: 12px; font-weight: 700; }

/* ── Wizard "paso 2": banner de la cotización que se está confirmando —
   hace de "título" del paso 1 (ver plantilla, "Tu equipo" desaparece acá) ── */
.wz-confirm-banner {
    max-width: 800px; margin: 0 auto 22px; padding: 18px 46px 18px 20px;
    background: var(--ep-teal-subtle); border: 1px solid rgba(13,92,99,.15);
    border-radius: var(--ep-radius);
    display: flex; align-items: flex-start; gap: 14px;
    position: relative;
}
.wz-confirm-banner__icon { color: var(--ep-teal); flex-shrink: 0; margin-top: 1px; }
.wz-confirm-banner__body { min-width: 0; }
.wz-confirm-banner__title { font-size: 14.5px; color: var(--ep-gray-800); margin: 0 0 4px; line-height: 1.5; }
.wz-confirm-banner__title strong { color: var(--ep-teal); }
.wz-confirm-banner__text { font-size: 13px; color: var(--ep-gray-700); margin: 0; line-height: 1.55; }
.wz-confirm-banner__close {
    position: absolute; top: 12px; right: 14px; border: none; background: none;
    font-size: 20px; line-height: 1; color: var(--ep-gray-400); cursor: pointer; padding: 2px 4px;
}
.wz-confirm-banner__close:hover { color: var(--ep-gray-600); }
@media (max-width: 640px) {
    .wz-confirm-banner { padding: 16px 40px 16px 16px; }
}

/* ── Wizard "paso 2": indicador "X de N personas" — reemplaza el título
   "Tu equipo" (ya lo cubre el banner de arriba) ── */
.wz-roster-counter { font-size: 15px; font-weight: 700; color: var(--ep-gray-800); }

/* ── Wizard "paso 2": link inválido/vencido — sin formulario que mostrar ── */
.wz-confirm-blocked {
    max-width: 440px; margin: 80px auto; padding: 32px 24px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.wz-confirm-blocked svg { color: var(--ep-gray-400); }
.wz-confirm-blocked p { font-size: 14px; color: var(--ep-gray-700); line-height: 1.6; margin: 0; }

/* ── Pantalla: esperando pago (state === 'pending_payment') ── */
.wz-pending {
    max-width: 560px; margin: 60px auto; padding: 0 20px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.wz-pending__icon { color: var(--ep-teal); margin-bottom: 12px; }
.wz-pending__title { font-family: 'Cardo', serif; font-size: 26px; font-weight: 700; margin: 0 0 10px; color: var(--ep-gray-800); }
.wz-pending__summary { font-size: 13px; color: var(--ep-gray-600); margin: 0 0 18px; }
.wz-pending__text { font-size: 14px; color: var(--ep-gray-700); line-height: 1.6; margin: 0 0 28px; }
.wz-pending__form {
    width: 100%; background: #fff; border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius);
    padding: 22px; text-align: left;
}
.wz-pending__file-row { display: flex; align-items: center; gap: 12px; margin: 6px 0 18px; flex-wrap: wrap; }
.wz-pending__filename { font-size: 12.5px; color: var(--ep-gray-600); }
.wz-pending__form .ep-btn-primary { width: 100%; }
.wz-pending__done {
    width: 100%; background: var(--ep-teal-subtle); border: 1px solid rgba(13,92,99,.15); border-radius: var(--ep-radius);
    padding: 22px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ep-teal);
}
.wz-pending__done p { margin: 0; font-size: 13.5px; color: var(--ep-gray-700); }

/* ── Pantalla: todo resuelto (state === 'done') ── */
.wz-done-screen {
    max-width: 440px; margin: 80px auto; padding: 0 20px; text-align: center;
}
.wz-done-screen__icon { color: var(--ep-green); margin-bottom: 12px; }
.wz-done-screen h2 { font-family: 'Cardo', serif; font-size: 26px; font-weight: 700; margin: 0 0 10px; color: var(--ep-gray-800); }
.wz-done-screen p { font-size: 14px; color: var(--ep-gray-600); line-height: 1.6; margin: 0; }

/* ── Pantalla: agenda en lote (state === 'needs_agenda') ──
   .psico-* (calendario/horarios) viene de booking.css; acá solo el layout
   propio de esta pantalla (lista de personas + hint). */
.ea-roster {
    max-width: 860px; margin: 0 auto 20px; background: #fff; border: 1px solid var(--ep-gray-200);
    border-radius: var(--ep-radius); padding: 6px 18px;
}
.ea-roster__row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 12px 0; font-size: 13.5px; }
.ea-roster__row + .ea-roster__row { border-top: 1px solid var(--ep-gray-200); }
.ea-roster__name { color: var(--ep-gray-800); font-weight: 600; flex: 1 1 auto; min-width: 120px; }
.ea-roster__status { font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.ea-roster__status.is-pending { background: #fef3c7; color: #92400e; }
.ea-roster__status.is-done { background: var(--ep-teal-subtle); color: var(--ep-teal); }
.ea-roster__status.is-sent { background: #e0e7ff; color: #4338ca; }
.ea-roster__actions { display: flex; gap: 8px; flex-shrink: 0; }
.ea-row-btn {
    font-size: 11.5px; font-weight: 700; padding: 6px 12px; border-radius: 8px; cursor: pointer;
    border: 1px solid var(--ep-gray-200); background: #fff; color: var(--ep-gray-700); transition: all .15s;
}
.ea-row-btn:hover { border-color: var(--ep-teal); color: var(--ep-teal); }
.ea-row-btn:disabled { opacity: .6; cursor: default; }
.js-ea-schedule { border-color: var(--ep-teal); background: var(--ep-teal); color: #fff; }
.js-ea-schedule:hover { background: var(--ep-teal-hover); color: #fff; }

.ea-card { max-width: 860px; margin: 0 auto; box-shadow: 0 1px 3px rgba(0,0,0,.06); border-radius: var(--ep-radius); }
.ea-queue-badge {
    margin-left: 8px; padding: 2px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
    background: var(--ep-teal-subtle); color: var(--ep-teal); vertical-align: middle;
}
.wz-agenda-hint { max-width: 860px; margin: 18px auto 0; text-align: center; font-size: 13px; color: var(--ep-gray-500, #6b7280); }

@media (max-width: 640px) {
    .ea-roster__row { flex-wrap: wrap; }
    .ea-roster__actions { width: 100%; justify-content: flex-end; }
}
