
                    .booking-details-close-wrapper{
                    display:flex;
                    justify-content:flex-end;
                    margin-bottom:20px;
                }

                .booking-close-btn{
                    background:#ef4444;
                    color:#fff;
                    border:none;
                    padding:10px 18px;
                    border-radius:8px;
                    cursor:pointer;
                    font-family:Montserrat;
                    font-weight:700;
                    transition:.3s;
                }

                .booking-close-btn:hover{
                    opacity:.9;
                }
                .booking-selection-dropdown{
                appearance:none;
            }
                        .booking-custom-dropdown{
                position:relative;
                width:100%;
                max-width:700px;
                        }

           .booking-dropdown-trigger{
                border:1px solid #ddd;
                border-radius:8px;
                background:#fff;

                display:flex;
                justify-content:space-between;
                align-items:center;

                padding:16px 20px;
                cursor:pointer;

                min-height:80px;
                height:auto;
            }

            .booking-dropdown-menu{
                position:absolute;
                top:100%;
                left:0;
                right:0;

                background:#fff;
                border-radius:10px;

                box-shadow:0 10px 30px rgba(0,0,0,.15);

                display:none;

                z-index:9999;
            }

            .booking-custom-dropdown.active .booking-dropdown-menu{
                display:block;
            }

            .booking-dropdown-item{
                display:flex;
                align-items:center;
                gap:14px;
                padding:14px 18px;
                cursor:pointer;
                border-bottom:1px solid #eee;
            }

            .booking-dropdown-item:hover{
                background:#f5f8ff;
            }

            .booking-dropdown-item.selected{
                background:#eef4ff;
            }

            .booking-item-content{
                flex:1;
            }

            .booking-item-title{
                font-family:Montserrat;
                font-weight:700;
                font-size:18px;
                color:#24324b;
            }

            .booking-item-subtitle{
                font-family:Montserrat;
                font-size:14px;
                color:#6b7280;
            }

            .booking-item-check{
                color:#2f80ed;
                font-size:18px;
                display:none;
            }

            .booking-dropdown-item.selected .booking-item-check{
                display:block;
            }
            .booking-schedule-dropdown{
                position:relative;
                display:inline-block;
            }

            .booking-schedule-trigger{
                display:flex;
                align-items:center;
                gap:60px;
                cursor:pointer;
                padding-right:30px;
                position:relative;
            }

            .booking-schedule-trigger::after{
                content:'';
                position:absolute;
                right:0;
                top:50%;
                transform:translateY(-50%);
                width:18px;
                height:18px;

                background-repeat:no-repeat;
                background-position:center;
                background-size:contain;

                background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23C89B3C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

                transition:0.3s ease;
            }

            .booking-schedule-floating{
                position:absolute;
                top:calc(100% + 10px);
                left:0;
                min-width:280px;

                background:#fff;
                border-radius:16px;
                padding:16px;

                box-shadow:0 10px 30px rgba(0,0,0,.12);

                opacity:0;
                visibility:hidden;
                transform:translateY(-8px);

                transition:all .25s ease;

                z-index:9999;
            }

            .booking-schedule-dropdown.active .booking-schedule-floating{
                opacity:1;
                visibility:visible;
                transform:translateY(0);
            }

            .booking-schedule-dropdown.active .booking-schedule-trigger::after{
                transform:translateY(-50%) rotate(180deg);
            }

          .booking-schedule-wrapper{
    display:flex;
    align-items:flex-start;
    gap:40px;
}

.booking-schedule-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.booking-schedule-row{
    display:grid;
    grid-template-columns:70px 140px;
    column-gap:20px;
    align-items:center;
}

.schedule-day{
    font-family:Montserrat;
    font-weight:800;
    font-size:18px;
}

.schedule-time{
    font-family:Montserrat;
    font-weight:700;
    font-size:18px;
}

.booking-timezone-wrapper{
    min-width:90px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:34px; /* aligns with first schedule row */
}

.schedule-timezone-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 16px;

    border-radius:12px;

    background:#F6F1E8;
    color:#C89B3C;

    font-family:Montserrat;
    font-size:14px;
    font-weight:700;
}
            .schedule-timezone{
                font-size:12px;
                font-weight:600;
                color:#8b8b8b;
                text-transform:uppercase;
                letter-spacing:.5px;
            }
        .airtable-booking-selection-wrapper{
            display:grid;
            grid-template-columns:600px 1fr;
            align-items:center;
            gap:40px;
            background:#fff;
            padding:28px 0px;
            border-radius:0;
            margin-bottom:0px;
        }

        .booking-selection-title{
            font-size:28px;
            font-weight:800;
            text-transform:uppercase;
            color:#000;
            font-family:'Montserrat';
            letter-spacing:0.3px;
        }

        .booking-selection-field-wrapper{
            width:100%;
            display:flex;
            justify-content:flex-end;
        }
        .booking-selection-dropdown{
    width:100%;
    max-width:700px;
    height:58px;
    border:1.5px solid #7b7b7b;
    border-radius:8px;
    background:#fff;
    padding:0 18px;
    font-size:15px;
    font-weight:600 !important;
    text-transform:uppercase;
    font-family:'Montserrat';
    color:#000;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    cursor:pointer;
}
.booking-selection-field-wrapper{
    position:relative;
}

.booking-selection-field-wrapper::after{
    content:'';
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    width:18px;
    height:18px;
    pointer-events:none;
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23222' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media(max-width:768px){

    .airtable-booking-selection-wrapper{
        grid-template-columns:1fr;
        gap:20px;
        padding:24px;
    }

    .booking-selection-dropdown{
        max-width:100%;
    }

}
        .booking-selection-btn{
            padding:12px 22px;
            border:none;
            background:#111;
            color:#fff;
            border-radius:8px;
            cursor:pointer;
            display:none;
        }

        #booking-details-card{
            margin-top:0px;
        }

        .booking-details-content{
            background:#fff;
            border-radius:16px;
            padding:24px;
            box-shadow:0 2px 12px rgba(0,0,0,0.08);
        }

        #booking-map{
            width:100%;
            height:400px;
            border-radius:16px;
            overflow:hidden;
            margin-bottom:24px;
        }

        .booking-details-title{
            margin-bottom:18px;
            font-size:24px;
            font-weight:700;
        }

        .booking-details-paragraph{
            margin-bottom:16px;
            line-height:1.6;
        }

        .booking-services-wrapper{
            display:flex;
            flex-wrap:wrap;
            gap:12px;
            margin-top:20px;
        }

        .booking-service-icon{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:10px 16px;
            background:#f5f5f5;
            border-radius:999px;
            font-size:14px;
            font-weight:600;
                color: black;
    text-decoration: none;
        }
.booking-layout-wrapper{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:30px;
    align-items:start;
}
.booking-trigger-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    flex:1;
    overflow:hidden;
}

.booking-trigger-title{
    font-family:Montserrat;
    font-size:18px;
    font-weight:700;
    color:#24324b;
    line-height:1.2;
}

.booking-trigger-subtitle{
    display:block;
    font-family:Montserrat;
    font-size:14px;
    color:#7a7a7a;
    margin-top:6px;
    line-height:1.4;
}

.booking-dropdown-trigger{
    min-height:72px;
    padding:16px 20px;
}
.booking-header{
    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-bottom:0px;
}

.booking-location-icon{
    font-size:34px;
    color:#c8a04d;
}
.map-location-icon{
    font-size:14px;
    color:#c8a04d;
}
.booking-main-title{
    font-size:32px;
    font-weight:800;
    margin:0;
    text-transform:uppercase;
    color:#0d1633;
    font-family: montserrat;
}

.booking-main-address{
    margin-top:8px;
    font-size:20px;
    color:#777;
        font-family: montserrat;
}

.booking-info-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.booking-time-section{
    display:flex;
    gap:18px;
    align-items:center;
    margin-bottom:30px;
  padding:20px;
    border:1px solid #eee;
    border-radius:18px;
}

.booking-card-icon{
    width:58px;
    height:58px;
    border-radius:999px;
    background:#f6f1e8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.booking-card-label{
    font-family: montserrat;
    font-size:13px;
    font-weight:700;
    color:#888;
    margin-bottom:6px;
}

.booking-card-value{
    font-size:16px;
    font-weight:700;
    color:#111;
    font-family: montserrat;
}

.booking-date-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:30px;
}

.booking-date-box{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:20px;
    border:1px solid #eee;
    border-radius:18px;
}

.booking-services-title{
        font-family: montserrat;
    font-size:14px;
    font-weight:700;
    margin-bottom:16px;
    color:#666;
}

.booking-services-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.booking-service-icon{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    border-radius:999px;
    background:#f4f4f4;
    font-weight:600;
        font-family: montserrat;
            color: black !important;
    text-decoration: none !important;
}

#booking-map{
    width:100%;
    height:100%;
    min-height:520px;
    border-radius:24px;
    overflow:hidden;
}

.booking-bottom-buttons{
    display:grid;
    
    gap:24px;
    margin-top:10px;
}

.booking-location-btn,
.booking-book-btn{
    display:flex;
    align-items:center;
    gap:20px;
    padding:28px;
    border-radius:24px;
    text-decoration:none !important;
    transition:0.3s ease;
        font-family: montserrat;
}

.booking-location-btn{
    background:#fff;
    color:#111;
    box-shadow:0 5px 20px rgba(0,0,0,0.06) !important;
    text-decoration:none !important;
        font-family: montserrat;
}
.map-location-btn{
    display:flex;
    align-items:center;
    gap:20px;
    padding:10px;
    border-radius:24px;
    text-decoration:none !important;
    transition:0.3s ease;
        font-family: montserrat;
}

.map-location-btn{
    background:#4285F4;
    color:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.06) !important;
    text-decoration:none !important;
        font-family: montserrat;
}
/* .map-location-btn{
    background:#fff;
    color:#111;
    box-shadow:0 5px 20px rgba(0,0,0,0.06) !important;
    text-decoration:none !important;
        font-family: montserrat;
} */

.booking-book-btn{
    background:#c8a04d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:20px;
    padding:20px;
    border-radius:24px;
    text-decoration:none !important;
    width: 50% !important;
        margin-bottom: 30px;
}

.booking-btn-icon{
    width:64px;
    height:64px;
    border-radius:999px;
    background:rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}
.map-btn-icon{
    width:34px;
    height:34px;
    border-radius:999px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}
.booking-location-btn .booking-btn-icon{
    background:#f6f1e8;
}

.booking-book-btn > div:last-child{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.booking-btn-title{
    font-size:18px;
    font-weight:700;
    
    text-align:center;
}

.booking-btn-subtitle{
    font-size:15px;
    opacity:0.8;
    text-align:center;
}
.map-btn-title{
    font-size:16px;
    font-weight:700;
   
    text-decoration:none !important;
        font-family: montserrat;
    color:white;
}
.booking-selection-dropdown option{
    font-weight:600;
}
/* Dental */
.dental-service{
    background:#b2ceeb;

}

/* Hearing */
.hearing-service{
    background:#FFF7E6;
   
}

/* Vision */
.vision-service{
    background:#a6fddc;
    
}

/* Bio & Labs */
.biolabs-service{
    background:#F5F0FF;
   
}

/* MSK */
.msk-service{
    background:#FFF3E8;
  
}
.mammography-service{
    background:#fdf2f8;
    border:1px solid #f9a8d4;
    color:#be185d;
}
.booking-service-icon:hover{
    transform:translateY(-2px);
}
.leader-container{
    display:none;
}
@media(max-width:768px){
    #booking-map{
        height:300px !important;
    }
    .booking-main-title{
         font-size: 20px !important;
    }
    .booking-main-address{
        font-size: 12px;
    }
    .booking-selection-title{
    text-align: center;
    font-size: 20px !important;
    }
    .booking-info-card{
        width: 100%;
            background: #fff;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }
    .schedule-day{
        font-size:16px;
    }
    .schedule-time{
        font-size:12px;
    }
    .booking-card-label{
        font-size:10px;
    }
    .booking-card-value {
        font-size:14px;
    }
    .booking-services-wrapper {
        justify-content:center !important;
    }
    .booking-services-title  {
        text-align: center !important;
    }
    .booking-book-btn {
        width: 80%;
    }
}
@media(max-width:1024px){

    .booking-layout-wrapper{
        grid-template-columns:1fr;
    }

    .booking-bottom-buttons{
        grid-template-columns:1fr;
    }

    .booking-main-title{
        font-size:32px;
    }

}