body{
    margin: 0;
}
#app{
    display: flex;
}
.list-container .list-container-documentList {
    float: left;
    border: 1px solid #000000;
    background-color: #F7F6F3;
    height:100vh;
    width: 240px;
    border: none;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 40px;
}
.documents-title{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 70%;
}
.documents, .documents-add{
    margin-top: 10px;
    white-space: nowrap;
    min-width: 0px;
    overflow: hidden;
    text-overflow: clip;
    display: flex;
    align-items: center;
}
.addButton{
    margin-left: 10px;
}

.list-container div{
    list-style: none;
    padding-left: 3px;
    color: #6C6A65;
    width: 100%;
    /* margin-top: 10px; */
    margin-bottom: 0px;
    font-size: 12pt;
    text-overflow: ellipsis;
    white-space: nowrap;

}
.list-container .documents:hover, .documents-add:hover{
    cursor: pointer;
    background-color: #E8E7E4;
}
.list-container .documents:hover > i{
    opacity: 1;
}
.documents-add > i {
    opacity: 1;
}
i{
    opacity: 0;
    margin-right: 5px;
}
.editor-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.editor{
    align-items: center;
    flex-direction: column;
    padding-left: 10px;
    padding-top: 10px;
    width: 700px;
    padding-bottom: 10px;
    height: 60%;
}

.editor > input{
    height: 8%;
    width: 100%;
    padding: 10px;
    font-size: 22pt;
    box-sizing: border-box;
    margin: 5px;
    border: none;
    outline-color: #E8E7E4;
}
.editor > textarea{
    width: 100%;
    height: 80%;
    padding: 10px;
    resize: none;
    font-size: 22pt;
    box-sizing: border-box;
    margin: 5px;
    border: none;
    outline-color: #E8E7E4;
}
.editor textarea:hover, input:hover{
    background-color: #EFEFEF;
}
.child-document-list{
    height: 40%;
    padding: 10px;
    width: 700px;
}
.fa-file-lines{
    opacity: 1;
}

.child-documents{
    color: #6C6A65;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.child-documents-title{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5px;
    font-size: 12pt;
}
.child-documents:hover{
    cursor: pointer;
    background-color: #EFEFEF;
}