.stm-waitlist-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font: inherit;
}

.stm-waitlist-panel {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(16, 24, 40, 0.45);
}

.stm-waitlist-panel__card {
    width: min(22rem, 100%);
    padding: 1.25rem 1.35rem 1.15rem;
    border-radius: 12px;
    background: #fff;
    color: #1a2744;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.22);
}

.stm-waitlist-panel__title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.stm-waitlist-panel__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
}

.stm-waitlist-panel__field input {
    padding: 0.45rem 0.6rem;
    border: 1px solid rgba(26, 39, 68, 0.18);
    border-radius: 8px;
    font: inherit;
}

.stm-waitlist-panel__actions {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.stm-waitlist-panel__submit,
.stm-waitlist-panel__cancel {
    appearance: none;
    border: 0;
    background: #1a2744;
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
}

.stm-waitlist-panel__cancel {
    background: transparent;
    color: #1a2744;
}

.stm-waitlist-toast {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100001;
    max-width: 90vw;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    background: #1a2744;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.2);
}

.stm-waitlist-toast--error {
    background: #9b2c2c;
}
