﻿.booking-container {
    display: flex;
    background: white;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0px 13px;
    align-items: center;
    gap: 15px;
}

.booking-field {
    display: flex;
    align-items: center;
    /* background: #fff; */
    border-right: 1px solid #838C8F3B;
    padding: 10px;
    flex: 1;
    min-width: 150px;
}

    .booking-field:last-child {
        border-right: none;
    }

    .booking-field img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

.label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
    font-family: "Baloo Chettan 2", sans-serif;
    color: #401774;
}

input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #666;
    width: 100%;
    font-family: "Poppins", sans-serif;
}


@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
        width: 90%;
    }

    .booking-field {
        width: 100%;
    }
}
.main-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Adjust spacing between elements */
    width: 100%;
}

.label-container {
    padding: -1px 75px;
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allows the label container to take up available space */
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
}

.labelb {
    padding: 0px 15px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 12px;
    color: #888;
    background-color: white;
    white-space: nowrap; /* Prevents text from wrapping */
}
.booking_section_div {
    /*display: none;*/
    transition: all 0.3s ease-in-out;
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;
    background-color: #f9f9f9;
}