.top-bar{
    position: absolute;
        top: 0;
        left: 0;
        height: 40px;
        width: 200vh;
        z-index: 30;
    /* background-color: rgb(109, 175, 133); */
    background-color: rgba(224, 227, 227, 0.8);
    /* background-image: url(../../../../Assets/Graphics/Pictures/Background/tienko-dima-uYoVf9I6ANI-unsplash.jpg); */
        background-size: 100%;
        background-position: 40% 60%;
    box-shadow: 1px 1px 4px rgb(148, 148, 152);
    /* box-shadow: 1px 0px 4px darkgreen; */
}
.left-bar {
    position: absolute;
        top: 40px;
        left: 0;
        height: calc(100% - 40px);
        width: 160px;
        z-index: 10;
    background-color: rgba(224, 227, 227, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 1px 1px 4px rgb(148, 148, 152);
    /* overflow-x: hidden;
    overflow-y: auto; */
    overflow: visible;
}
.resizer {
    width: 2px;
    cursor: col-resize;
    position: absolute;
        top: 0;
        right: -1px;
        bottom: 0;
        z-index: 80;
    background: transparent;
    transition: background 0.2s;
}
.resizer:hover {background: rgba(109, 175, 133, 0.5);}
.tree-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: auto;
}

.main-content{
    position: absolute;
        top: 50px;
        left: 165px;
        width: 900px;
        right: 0;
        bottom: 0;
        padding: 0;
    overflow: hidden;
    /* overflow: auto; */
    outline: 1px dotted rgb(159, 159, 159);
    /* background-color: #ffffff; */
}


.category-grid {
    display: none;
    position: absolute;
        top: 40px;
        left: 10px;
        padding: 10px;
        height: 300px;
        z-index: 100;
    background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}


.menu-trigger {
    color: white;
        text-shadow: 1px 0px 1px white;
    font-size: 24px;
    cursor: pointer;
    line-height: 40px;
    padding-left: 20px;
    user-select: none;
    width: 30px;
}
.category-menu {
    display: none;
    position: absolute;
        top: 40px;
        left: 10px;
        z-index: 40;
        max-height: 320px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    
    /* display: flex; */
}
.category-menu.active {
    display: flex; 
    flex-direction: column; 
    flex-wrap: wrap; 
    /* flex, only active */
}




.tree-root, .tree-children {
    list-style-type: none;
    padding-left: 10px;
    margin: 0;
    font-size: 12px;
    font-family:'Courier New', Courier, monospace
    /* font-family:'Times New Roman', Times, serif */
}
/* .tree-root { padding-left: 10px; padding-top: 10px; } */
.tree-children { 
    display: none;
    border-left: 1px solid #ccc;
    margin-left: 5px;
}
.tree-children.expanded { display: block; }
.node-label {
    cursor: pointer;
    border-radius: 4px;
    padding: 2px 0;
    /* padding: 4px 5px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.node-label:hover { 
    color: rgb(109, 175, 133);
    background-color: rgba(109, 175, 133, 0.1);
 }

.level-2:hover > .tree-children.flyout-menu { display: none; }
/* .level-2 { position: relative; }
.tree-children.flyout-menu {
    position: absolute;
        left: 100%;
        top: 0;
        z-index: 50;
        padding: 5px;
    background: rgb(224, 227, 227);
    border: 1px solid #999;
    min-width: 120px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.level-2:hover > .tree-children.flyout-menu {
    display: block;
} */