/* ==========================================================================
   ETS — Multi-attendee seminar registration (registration.php only)
   Loaded by registration.php, after the site stylesheets.
   ========================================================================== */

.rx-attendee {
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 1rem 1.1rem 1.1rem;
    margin: 0 0 1rem;
    background: #f8fafc;
}

.rx-attendee__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .75rem;
}

.rx-attendee__title {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    margin: 0;
}

.rx-attendee__body {
    display: grid;
    gap: .75rem;
}

.rx-attendee__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

@media (max-width: 640px) {
    .rx-attendee__row {
        grid-template-columns: 1fr;
    }
}

.rx-attendee__row > .form-group {
    margin: 0;
}

.rx-attendee__remove {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-size: .82rem;
    padding: .3rem .7rem;
    cursor: pointer;
}

.rx-attendee__remove:hover,
.rx-attendee__remove:focus {
    border-color: #f87171;
    color: #b91c1c;
}

.rx-add-attendee {
    background: #fff;
    border: 1px dashed #94a3b8;
    border-radius: 10px;
    color: #0f766e;
    font-weight: 600;
    padding: .65rem 1.1rem;
    cursor: pointer;
}

.rx-add-attendee:hover,
.rx-add-attendee:focus {
    border-color: #0e9f95;
    background: #f0fdfa;
}

.rx-attendee.is-empty .rx-attendee__body {
    opacity: .45;
}

.rx-copyfrom {
    margin: .35rem 0 1rem;
}

.rx-cart {
    margin: 1.5rem 0 1rem;
    padding: 1.1rem 1.3rem;
    border-radius: 12px;
    background: #0a1220;
    color: #cbd5e1;
}

.rx-cart__rows {
    margin: 0 0 .6rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .3rem;
}

.rx-cart__rows li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-variant-numeric: tabular-nums;
}

.rx-cart__rows li span:last-child {
    font-family: var(--font-mono, monospace);
}

.rx-cart__rows .rx-cart__discount {
    color: #5eead4;
}

.rx-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, .35);
    padding-top: .6rem;
}

.rx-cart__total b {
    font-family: var(--font-mono, monospace);
    font-size: 1.6rem;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.rx-cart__note {
    margin: .5rem 0 0;
    font-size: .85rem;
    color: #94a3b8;
}

.rx-cart small {
    font-family: var(--font-mono, monospace);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5eead4;
}

.rx-collapsible {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: .85rem 1rem;
    margin: .5rem 0 1.25rem;
}

.rx-collapsible > summary {
    cursor: pointer;
    font-weight: 600;
    color: #0f766e;
}

.rx-collapsible[open] > summary {
    margin-bottom: 1rem;
}
