/* 1. De achtergrond van de VOLLEDIGE sectie/pagina */
#booking-saas-wrapper-outer {
    background-color: #0f172a !important;
    background: radial-gradient(circle at top right, rgba(255, 182, 193, 0.15), transparent 600px), 
                linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
    min-height: 100vh;
    padding: 60px 20px !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* 2. De Widget zelf (Het donkerblauwe blok) */
#booking-saas-wrapper {
    background: #1e293b !important;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%) !important;
    padding: 40px !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
    color: #ffffff !important;
    max-width: 450px !important;
    width: 100%;
    border: 1px solid rgba(255, 182, 193, 0.2) !important;
    backdrop-filter: blur(10px);
}

/* 3. De teksten */
#bs-public-form h3 {
    color: #ffb6c1 !important; /* Baby Rosé */
    font-size: 1.8rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
}

.bs-field label {
    color: #cbd5e1 !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 8px !important;
}

/* 4. De Input velden (met rose gloed) */
.bs-field input {
    width: 100% !important;
    padding: 14px 16px !important;
    background: rgba(255, 182, 193, 0.05) !important;
    border: 2px solid rgba(255, 182, 193, 0.2) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    outline: none !important;
}

.bs-field input:focus {
    border-color: #ffb6c1 !important;
    background: rgba(255, 182, 193, 0.1) !important;
}

/* 5. De Baby Rosé Button */
.bs-submit {
    width: 100% !important;
    background: #ffb6c1 !important;
    color: #0f172a !important;
    border: none !important;
    padding: 16px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-top: 10px !important;
    transition: all 0.3s ease !important;
}

.bs-submit:hover {
    background: #ffa0b0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4) !important;
}

#bs-message {
    text-align: center;
    margin-top: 15px;
}