/* Waitlist modal — self-contained shell (mirrors rc-day-modal). */
.rc-wl-modal[hidden] { display: none !important; }
.rc-wl-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.rc-wl-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
}
.rc-wl-modal__panel {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 20px 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: rc-wl-slide-up 0.25s ease-out;
}
@keyframes rc-wl-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 540px) {
    .rc-wl-modal__panel {
        padding: 20px 16px;
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
        align-self: flex-end;
    }
}

.rc-wl-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}
.rc-wl-modal__close:hover {
    color: #333;
    background: #f0f0f0;
}

.rc-wl-modal__form input:focus {
    outline: none;
    border-color: #00BF63 !important;
    box-shadow: 0 0 0 3px rgba(0,191,99,0.1);
}
#rc-wl-submit:hover { background: #00a856; }
#rc-wl-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.rc-wl-modal__status {
    text-align: center;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    font-family: 'ProximaNova', 'Proxima Nova', 'Noto Sans', sans-serif;
    font-size: 14px;
}
.rc-wl-modal__status[hidden] { display: none; }
.rc-wl-modal__status--ok {
    background: #f0faf4;
    color: #00BF63;
}
.rc-wl-modal__status--err {
    background: #fef2f2;
    color: #e53e3e;
}

/* Sold-out card CTA hover */
.rc-camp-warteliste:hover {
    background: #00BF63 !important;
    color: #fff !important;
}
