
.sidenav {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color:#FFFDD0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #C4A484;
    display: block;
    transition: 0.3s;
}
.sidenav a:hover {
    color: #5C4033;
    background-color: #ffda00;
    padding: 10px;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.sidenav .closebtn:hover{
    color: #5C4033;
    background-color: #FFFDD0;
}
.sidenav a.option {
    white-space: nowrap; /* Prevent wrapping */
}
.sidenav a.logout {
    margin-top: 95%; /* Push the logout option to the bottom */
}
/* Overlay style */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    z-index: 0;
    display: none; /* Initially hidden */
    transition: 0.5s;
}
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}