body.sidebar aside {
    display: block;
}
@media ( max-width: 800px ) {
    body.sidebar aside {
        display: none;
    }
}
aside {
    display: none;
    position: fixed;
    top: var( --navbar-height );
    left: 0px;
    bottom: 0px;
    width: var( --sidebar-width );
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: #666666;
    padding: 8px;
}
aside ul {
    margin: 0px;
    display: flex;
    flex-direction: column;
    list-style-type: none;
}
aside ul.submenu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    padding-left: 15px; /* Indent submenus */
}
aside ul.submenu.open {
    max-height: 500px; /* Adjust as needed based on content */
    transition: max-height 0.5s ease-in;
}
aside li {
    margin-bottom: 5px;
}
aside a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
}
aside a:hover {
    background-color: #777777;
}
aside > ul a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}
aside ul.submenu a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
}


