/* Therapy Booking — Público */
.tb-booking-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    max-width: 480px;
}

.tb-heading {
    margin-top: 0;
    font-size: 18px;
    color: #1e293b;
}

.tb-field-group {
    margin-bottom: 16px;
}

.tb-field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.tb-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    color: #1e293b;
    box-sizing: border-box;
}

.tb-input:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.tb-hint {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

.tb-notice {
    background: #fef9c3;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 12px 16px;
    color: #854d0e;
    font-size: 14px;
}

select.tb-input option:disabled {
    color: #94a3b8;
}

/* Package sessions */
.tb-package-session {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color .15s;
}
.tb-package-session:focus-within {
    border-color: #0d9488;
}
.tb-package-session .tb-session-label {
    font-weight: 700;
    font-size: 14px;
    color: #0d9488;
    margin-bottom: 10px;
}

/* Waitlist */
.tb-waitlist-trigger { margin-top: 12px; }
.tb-waitlist-trigger .tb-wl-btn {
    background: none;
    border: 1.5px solid #0d9488;
    color: #0d9488;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background .15s;
}
.tb-waitlist-trigger .tb-wl-btn:hover { background: #f0fdf4; }
.tb-waitlist-form {
    display: none;
    margin-top: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px;
}
.tb-waitlist-form input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 8px;
    box-sizing: border-box;
}
.tb-waitlist-form button[type=submit] {
    background: #0d9488;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
