@charset "utf-8";
/* CSS Document */
    .booking-gallery img {
        cursor: pointer;
        transition: opacity 0.2s ease-in-out;
    }
    .booking-gallery img:hover {
        opacity: 0.9;
    }
    .main-img {
        height: 350px;
    }
    .sub-img {
        height: 169px;
    }
    .bottom-img {
        height: 150px;
    }
    .more-photos-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .modal-carousel-img {
        max-height: 80vh;
        object-fit: contain;
        width: 100%;
		
    }

