
.L_container {
    margin-top: 10px;
    position: relative; /* Ensure parent is a reference for absolute positioning */
}



.container_slides {
     transition: transform 0.5s ease;
    overflow: hidden; /* Keep slides within bounds */
    position: relative;
    display: flex; /* Enable flexbox for sliding */
}

.image_slides {
    flex: 0 0 100%; /* Each slide takes full width of the container */
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease; /* Smooth sliding transition */
    position: relative;
      
}


.roomie_love_div {
    position: absolute;
    top: 0; /* Adjust as needed */
    left: 0; /* Adjust as needed */
    width: 100%; /* Optional: Make it full width */
    height: 50px; /* Optional: Make it full height */
    z-index: 2; /* Higher z-index to overlay container_slides */
   
}


.view_indicator_div {
    position: absolute;
    bottom: 0; /* Adjust as needed */
    left: 0; /* Adjust as needed */
    width: 100%; /* Optional: Make it full width */
    height: 30px; /* Optional: Make it full height */
    z-index: 2; /* Higher z-index to overlay container_slides */
   
}





.L_splitDiv{
        display: flex;
    }

 .L_splits{
     width: 50%;
    }

    #L_split2{
        display: flex; justify-content: end;
    }

    /* the roomie needed*/
    #roomie{
        font-size: 12px;
        background-color: #F3F3F3;
        width: 120px; height: 27px;
        margin-top: 35px; 
        padding-top: 6px; padding-left: 10px;
       
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    /* the love section*/
    .favorite_container{
        margin: 20px 20px 0px 0px;
        width: 30px; height: 30px;
       
    }

    .love_img{
        width: 100%; 
    }

  

    .view_indicator_div{
        display: flex; margin-top: 235px;
        justify-content: center;
    }

    .view_indicator{
        width: 8px; height: 8px;
        border-radius: 4px;
        background:  #b1b1b1; margin: 5px;
    }

    #view_indicator1{
        background: #fff;

    }

/* Media Query for mobile devices */
@media (max-width: 480px) {
    .image_slides {
        width: 100%; height: 330px;
        border-radius: 20px;
    }

   
}

