/* #filesys {
    height: 90vh;
} */

.leftCol, .rightCol {
    height: 100vh;
    float: left;
    width: 20%;
}

.screenContainer {
    max-width: 800px;
}

.allBtns {
    display: flex;
    flex-direction: row;
}



#player {
    /* margin: 0 auto; */
    float: left;
    overflow: hidden;
    width: 58%;

}

.scrollBox {
    overflow: auto;
    height: 90vh;
}

/* 
#events{
    height: 90vh;
} */

#playButtons {
    display: flex;
    justify-content: center;
    width: 800px;
}


#screen {
    border: solid;
    margin: 0 auto;
    width: 800px;
}

#frames {
    display: flex;
    overflow: auto;
}

#frames img {
    width: auto;
    height: 150px;
    padding: 10px;
    border: solid;
}









ul, #filesys {
    list-style-type: none;
}

.caret {
    user-select: none;
}

.clickable {
    cursor: pointer;
}

.caret::before {
    content: "\25B6";
    color: black;
    display: inline-block;
    margin-right: 6px;
}

.caret-down::before {
    transform: rotate(90deg);
}

.nested {
    display: none;
}

.active {
    display: block;
}

.selected {
    color: blue;
    border-color: blue;
}