
@media only screen and (max-width: 600px)  {

   #sidebar-menu, #story-buttons, #firstDateStory{
    display: none;
   }

#sidebar-menu {
    display: flex;
    position: fixed;  /* Changed from absolute to fixed for consistent positioning relative to the viewport */
    flex-direction: column;
    justify-content: space-evenly;
    right: 0;          /* Start from the right edge */
    transform: translateX(100%); /* Hide completely off the screen to the right */
    top: 0;
    width: 60%;
    max-width: 150px;
    height: calc(100vh - 40px);
    background-color: var(--primary-color);
    transition: transform 0.5s ease; /* Use transform for the transition */
    z-index: 1001;
    padding: 20px 10px; /* Adjusted padding */
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
}
#sidebar-menu{
    display: flex;
    flex-direction: column;
    white-space-collapse: preserve-breaks;
    width: 60vw;
    overflow-y: auto;
}

#sidebar-menu button{
    background-color: var(--buttonColor);
    border-style: none;
    height: 50px;
    width: 100px;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0px 0px 5px 0px  black;

}




#sidebar-menu ul {
width: 100%; /* Full width of the parent */
padding: 0;
margin: 0px 0px; /* Adds some vertical spacing */
list-style: none; /* Removes bullets */
display: inline-block;
justify-content: space-around; /* Evenly spaces the buttons horizontally */
}

#overlay {
display: none;
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0,0,0,0.5);
z-index: 999;
cursor: pointer;
}
#sidebar-menu ul {
    margin-top: 70px;
    box-shadow: none;
}
#sidebar-menu li {
display: flex;
justify-content: center;
align-items: center;
background-color: transparent;
border-bottom: none;
padding: 2px; /* Slightly reduced padding */
}

#mobile-sideBar img{
    height: 80%;
    border-radius: 5px;
    margin: 0;
}
#sidebar-menu img{
    position: fixed;
    top: 30px;
    width: auto;
    height: 15%;
    min-height: 90px;
    
    border-radius: 10px;
    align-self: center;

}


}
