body {
    margin: 0;
    background-color: #2E2F43;
    color: #FFF;
    margin-left: 5px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#toolbar{
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    vertical-align: middle;
}
#toolbar label{
    font-size: small;
}
#toolbar .checkbox{
    margin: 4px 0;
}
.editPaneToolbar{
    margin: 10px 0;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
}
#lblFolder{ 
    margin: auto 5px;
    font-size: 12px;
}
.tbButton {
    border: .5px solid #aaa;
    background-color: #3E3D5F;
    color: #FFF;
    padding: 5px 20px;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.tbButton:hover{
    background-color: #646281;
}
.tbHighlight{
    background-color: #c56c48;
}
.txt{
    background-color: #3E3D5F;
    color: #FFF;
    overflow-wrap: normal;
    overflow-x: auto;
    tab-size: 4;
    resize: none;
    outline: .5px solid #aaa;
    border: 0;
}
#outputWrapOuter{
    flex-grow: 1;
    width: calc(100% - 10px);
    padding: 0;
    margin: 5px;
}
#outputWrap{
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: calc(1.5em + 5px);
    flex: 1;
}
.dropping{
    background-color: #646281;
    transition: background-color 200ms linear;
}
.txt:focus-within{
    outline: 1px solid #fff;
    border-radius: 2px;
}
.tabbedPane{
    display: flex;
    flex-direction: column;
}
#inputPane{
    position: fixed;
    left:0; 
    top: 3em;
    right: 50%;
    bottom: 40%;
}
#outputPane{
    position: fixed;
    left: 50%;
    top: 3em;
    right:0;
    bottom: 40%;
}
.txtPanel{
    flex-grow: 1;
    width: calc(100% - 10px);
    padding: 10px;
    margin: 5px;
}
.ed{
    margin: 0;
    height: 100%;
}
#sourcePane{
    position: fixed;
    top: calc(60% + 1.5em);
    left:0; right:0; bottom:0;
    display: flex;
    flex-direction: column;
}
.editorBox{
    flex-grow: 1;
    padding: 8px;
    margin: 5px;
    background-color: #3E3D5F;
    outline: .5px solid #aaa;
}
.editorBox:focus-within{
    outline: 1px solid #fff;
    border-radius: 2px;
}
#lblError{
    position: fixed;
    top: 60%;
    color: orange;
}
.noDisp {
    display: none;
}