#saloma-booking-wrapper {
    /* Use 100% to fit the parent container defined by user */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    /* Remove default styling to blend with user's container */
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.saloma-step {
    margin-bottom: 20px;
}

#saloma-slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
}

/* Updated to match user's B&W theme preferences (implied) */
.time-slot.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button#check-slots,
button#book-now {
    background: #000;
    /* Black button */
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    /* Sharp edges */
}


button#check-slots:hover,
button#book-now:hover {
    background: #333;
}

/* =========================================
   User's Custom Layout Styles
   (Merged here so they load with the plugin)
   ========================================= */

/* Global Container */
.saloma-booking-page {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    color: #000;
}

/* Hero Section */
.saloma-hero {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url('https://events.salomagroup.com/wp-content/uploads/2026/01/saloma-2-scaled-1.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.saloma-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.saloma-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.saloma-hero-text h1 {
    font-size: 3.5em;
    margin: 0 0 15px 0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff !important;
}

.saloma-hero-text h2 {
    font-size: 1.9em;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fafafafa;
}

/* Content Area */
.saloma-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.saloma-section-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 40px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    border-bottom: 1px solid #000;
    display: inline-block;
    padding-bottom: 15px;
}

.center-title {
    text-align: center;
    margin-top: 40px;
}

/* Booking Form Container */
.saloma-booking-container {
    background: #fff;
    padding: 40px;
    border: 1px solid #000;
    margin-bottom: 80px;
}

/* FAQ Section */
.saloma-faq-list {
    margin-top: 20px;
    margin-bottom: 60px;
}

.saloma-faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.saloma-faq-item:first-child {
    border-top: 1px solid #000;
}

.saloma-faq-item:last-child {
    border-bottom: 1px solid #000;
}

.saloma-faq-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.saloma-faq-item p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.8;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #saloma-booking-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        /* Let container handle padding */
        border: none;
    }

    .saloma-hero {
        height: 300px;
    }

    .saloma-hero-text h1 {
        font-size: 2em;
    }

    .saloma-hero-text {
        padding: 20px 30px;
    }

    .saloma-booking-container {
        padding: 20px;
        border: none;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }

    /* Ensure FAQ fits */
    .saloma-faq-list,
    .saloma-booking-page,
    .saloma-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
}