#amenity-facility-popup .popup-content {
    max-width: 680px;
    /* narrower */
    padding: 24px;
    background-color: #fff;
    border-radius: 12px;
    position: relative;
}

#amenity-facility-popup .close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 26px;
    font-weight: bold;
    color: #E6007A;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

#amenity-facility-popup .popup-header-container {
    margin-bottom: 16px;
}

/* Left-align description container and text */
#amenity-facility-popup .popup-header-container .exp-popup-detail-item {
    text-align: left;
}

#amenity-facility-popup #amenity-facility-popup-description-text {
    text-align: left;
    display: inline;
}

/* Light blue color for Note: label - not bold */
#amenity-facility-popup .note-label {
    color: #60A5FA;
    font-weight: normal;
}

/* Note container positioned below image slider */
#amenity-facility-popup #amenity-facility-popup-note-container {
    margin-top: 16px;
    text-align: left;
}

/* Slider container (updated selector to match markup) */
#amenity-facility-popup .amenity-facility-image-slider {
    width: 100%;
    height: 460px;
    /* taller */
}

#amenity-facility-popup .amenity-facility-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fill and crop nicely */
    display: block;
}

/* Use the generic Swiper nav class names in JS */
#amenity-facility-popup .swiper-button-next,
#amenity-facility-popup .swiper-button-prev {
    color: #FF007A !important;
    background-color: transparent !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50% !important;
    transform: translateY(-50%);
}

#amenity-facility-popup .swiper-button-next:hover,
#amenity-facility-popup .swiper-button-prev:hover {
    background-color: transparent !important;
    transform: translateY(-50%) scale(1.2) !important;
}

#amenity-facility-popup .swiper-button-next::after,
#amenity-facility-popup .swiper-button-prev::after {
    font-size: 24px !important;
    font-weight: 700;
    color: #FF007A !important;
}

/* Mobile styles (768px and below) */
@media (max-width: 768px) {
    #amenity-facility-popup .popup-content {
        max-width: 95%;
        width: 95%;
        padding: 15px;
    }

    #amenity-facility-popup .amenity-facility-image-slider {
        height: 280px;
    }
}