
/* Shared TidyCal Booking Lightbox */
.uc-booking-lightbox {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.uc-booking-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
}

.uc-booking-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.uc-booking-lightbox-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1330px;
    border-radius: 8px;
    transform: scale(0.92);
    transition: transform 0.25s ease;
}
.uc-booking-lightbox.is-open .uc-booking-lightbox-content {
    transform: scale(1);
}

.uc-booking-lightbox-content .tidycal-embed {
    width: 100%;
    min-height:70vh;
}

.uc-booking-lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: 0 !important;
    outline: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
}
.uc-booking-lightbox-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}
