html,body,div{
    padding: 0;
    margin: 0;
}

.file-manager{
    background-color: #F8F8F8;
    height: 100vh;
    border: 2px solid rgba(0,0,0,0.1);
    cursor: pointer;
    overflow: hidden;
}


.font16{
    font-size: 1.2em;
    font-weight:600;
    
}

.files-viewer{
    height: 100vh;
    overflow-y: scroll;
}
.files-viewer::-webkit-scrollbar{
    width: 5px;
    background-color: #F1F3F4;
}
.files-viewer::-webkit-scrollbar-thumb{
    width: 5px;
    background-color: rgba(0,0,0,0.2);
}

.dir-row{
    height: 37px;
    color: #424242;
    display: block;
    text-decoration: none;
    padding: 5px 35px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
}
.dir-row:before{
    content: '';
    background-image: url("/assets/img/folder.svg");
    fill: yellow;
    background-repeat: no-repeat;
    position: absolute;
    width: 24px;
    height: 24px;
    left: 5px;
    top: 5px;
}
.file-row{
    height: 37px;
    color: #424242;
    text-decoration: none;
    padding: 5px 35px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.file-row:before{
    content: '';
    background-image: url("/assets/img/file.svg");
    background-repeat: no-repeat;
    position: absolute;
    width: 24px;
    height: 24px;
    left: 5px;
    top: 5px;
}

.file-video:before{
    background-image: url("/assets/img/video.svg");
}
.file-image:before{
    background-image: url("/assets/img/image.svg");
}

.file-active{
    background-color: #CCE8FF;
}

.terminal-show{
    width: 100%;
    background-color: #2B2B2B;
    height: 300px;
    padding: 5px;
    color: #A4C15C;
    line-height: 160%;
}
