#menu_background {
    position: fixed;
    width: 100%;
    height: 100dvh;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.0);
}
#menu_background .menu-header {
    background-color: #5f8a9d;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 5px;
}
#menu_background .menu-header .logo-container {
    flex-grow: 0;
    flex-shrink: 0;
    height: 40px;
    width: auto;
}
#menu_background .menu-header .logo-container img {
    height: 40px;
    width: auto;
    fill: #2b3e46;
    stroke: #2b3e46;
}
#menu_background .menu-header .title-container {
    flex-grow: 1;
    flex-shrink: 1;
    padding-left: 10px;
    color: #fff;
}
#menu_background .menu-header .logout-container {
    display: inline-block;
}
#menu_background .menu-header .logout-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: #fff;
}
#menu_background .menu-header .logout-container a span {
    white-space: nowrap;
    font-size: 0.8rem;
}
#menu_close_button svg {
    stroke: #fff;
}
#menu_close_button {
    height: 30px;
}

#menu_container {
    background-color: #fff;
    position: relative;
    top: 0px;
    height: calc(100dvh - 50px);
    margin-left: calc(100vw - 300px);
}

#menu_container ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#menu_container ul li {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
}
#menu_container ul li:last-child {
    border-bottom: 1px solid var(--border);
}
#menu_container ul li span {
    display: inline-block;
    padding: 10px;
    width: 100%;
}
