#tab-menu{
    --backgroundColor: rgb(40,40,40);
    --textColor: rgb(171, 171, 171);
    --HoverBackgroundColor: rgb(200, 119, 20);
    --HoverTextColor: rgb(240,240,240);
    background-color: var(--backgroundColor);
    color: var(--textColor);
    display: none;  
    flex-direction: column;  
    position: absolute;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
}

#tab-menu .item-wrapper{
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#tab-menu .tab-menu-line{
    margin: 10px 0 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 1px;
    background-color: var(--textColor);
}

#tab-menu .item-wrapper .arrow{
    margin-left: 10px;
}

#tab-menu .item-wrapper:hover{
    background-color: var(--HoverBackgroundColor);
    color: var(--HoverTextColor);
    user-select: none;
}

#tab-menu .item-wrapper:hover > .sub-item-menu{
    display: flex;
}

#tab-menu .item-wrapper .sub-item-menu{
    background-color: var(--backgroundColor);
    color: var(--textColor);
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    left: 120px;
    width: 320px;
    transform: translateY(-10px);
    display: none;
    flex-direction: column;
    justify-content: center;
}



#tab-menu .item-wrapper .sub-item-menu .sub-item-wrapper{
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#tab-menu .sub-item-wrapper:hover{
    background-color: var(--HoverBackgroundColor);
    color: var(--HoverTextColor);
    user-select: none;
}