
.rooms-list-container {
    display: flex;
    flex-direction: column;
}

.room-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    min-height: 500px;
    padding: 1.2rem 0rem;
    width: 100%;
    border: var(--blue-background-colour) 0 2px 0 2px solid;
    margin-bottom: 1.2rem;
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.352);; */
}

.room-panel {
    flex-direction: column-reverse;
    padding: 1.5rem;


}
.room-info-content {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
margin-bottom: 40px;
max-width: 100%;
min-width: 100%;
}

.room-photo-slides-and-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    min-width: 100%;
}

.room-information {
    display: flex;
    text-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.room-heading-desktop {
    color: black;
    font-size: 2.5rem;
    display: none;
}

.room-heading-mobile {
    color: black;
    font-size: 2.5rem;
    display: block;
}

.room-photo-container {
    position: relative;
    margin: auto;
    height: 100%;
    width: 100%;    
    margin: 2rem 0;
    border-bottom: 3px solid var(--secondary-blue-colour);
    border-top: 3px solid var(--secondary-blue-colour);
}



@media screen and (min-width: 1000px) {

.room-panel {
    flex-direction: row;
    min-height: 500px;
    padding: 1.2rem 0rem;
    width: 100%;
    /* background-color: white; */
    /* border-radius: 30px; */
    border: var(--blue-background-colour) 0 2px 0 2px solid;
    margin-bottom: 1.2rem;
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.352);; */
}

.room-info-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* gap: 40px; */
    margin-bottom: 40px;
    max-width: 50%;
    min-width: 50%;
    padding-right: 6rem;
}

.room-photo-slides-and-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 50%;
    min-width: 400px;
}

.room-information {
    display: flex;
    text-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
}

.room-heading-desktop {
    display: block;
}

.room-heading-mobile {
    display: none;
}

.room-photo-container {
    position: relative;
    margin: auto;
    height: 100%;
    width: 100%;
    border-bottom: unset;
    border-top: unset;
}

}


.room-photo {
    object-fit: contain;
    height: 100%;
    min-height: 100%;
    width: 100%;
    
}

.room-description {
    font-family: sans-serif;
    font-optical-sizing: auto;
    font-weight: 550;
    font-size: 1.1rem;
    font-style: normal;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
}

.amenities-prices-box {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.room-amenities {
    margin-bottom: 15px;
    columns: 2;
}

ul.room-amenities {
    font-family: sans-serif;
    font-optical-sizing: auto;
    font-weight: 550;
    font-size: 1.1rem;
    font-style: normal;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}




.prices-heading, .amenities-heading {
    color: #190907;
}

.room-photo-container {
    display: flex;
    align-items: center;
}

.prev, .next {
    padding: 1rem;
}

.swiper-slide {
    width: 100%;
    max-height: 500px; /* This limits the height */
    height: 500px; /* Ensures height remains constant */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevents any overflow */
}

.booking-engine-expanded-panel {
    display: none;
    width: 100%;
}

