#menu {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: #F9F9F9;
    box-shadow: 0 0 3px #15151522;
    z-index: 20;
}

#menu .top {
    display: flex;
    align-items: center;
    padding: 17.5px;
    background: #F3F3F3;
}

#menu .top img {
    width: 35px;
    height: 35px;
    margin-right: 12px;
}

#menu .top .title {
    font-weight: 500;
    margin-bottom: 4px;
}

#menu .top .subtitle {
    font-size: 11px;
}



#menu .items {
    padding: 17.5px;
}

#menu .items .item {
    padding: 14px;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 7px;
    border-radius: 7px;
}

#menu .items .item:hover {
    background: #F3F3F3;
}

#menu .items .item.selected {
    background: #151515;
    color: white;
    font-weight: 400;
}

#menu #button-logout {
    background: #F3F3F3;
    padding: 21px;
    font-size: 14px;
    cursor: pointer;
}

#menu #button-logout:hover {
    background: #EBEBEB;
}
