.room-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}


.details {
    flex: 1;
    min-width: 300px;
    background:white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
display:flex;
flex-direction:column;
align-items:center;

}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}
@media (max-width:768px){
.title{
font-size:2rem;
}
.title-container{
min-height:170px;
}
.container, .room-details{
height: auto;
}
.details_btn{
margin-bottom:40px;
}
}
.price-section {

padding:20px;
    text-align: left;
    border-bottom:1px solid lightgrey;
}
.price {
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.price-curr {
    color: lightgrey;
}
.price-dur {
    color: grey;
    font-weight: bold;
}
.price-amm {
    font-weight: bold;
    font-size: 2rem;
}
.negotiable {
    font-size: 12px;
    color: green;
    font-weight: bold;
}
.avail{
width:100%;

}
.avail p{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
padding:20px;
display:flex;
flex-direction:row;
justify-content:space-between;
}
.a_title{
    font-size:1.2rem;
    margin-right:10px;
    color:grey;
}
.a_num{
                font-size:3rem;
    padding:10px;
}
.details_btn {
    background: rgba(140, 82, 255, 1);
    color: white;
    padding: 8px 14px;
    border: 1px solid rgba(140, 82, 255, 1);
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
    margin-top: 45px;
    box-shadow: rgba(140, 82, 255, 0.5) 0px 7px 29px 0px;
    transition: all 0.4s ease;


}
.details_btn:hover {
    box-shadow: rgba(140, 82, 255, 0.8) 0px 7px 29px 0px;
}
