@font-face {
    font-family: sora-reg;
    src: url(../fonts/Sora-Regular.woff2);
}
@font-face {
    font-family: sora-light;
    src: url(../fonts/Sora-Light.woff2);
}
@font-face {
    font-family: sora-bold;
    src: url(../fonts/Sora-Bold.woff2);
}
html {
    height: 100%;
}
body {
    background-color: #f5f1e3;    
    height: 100%;
    display: flex;
    flex-direction: column;
}
h1 {
    padding-top: 11px;
    padding-left: -10px;
    font-family: sora-bold;
    font-size: x-large;
    color: #000053;
}
.button {
    font-family: sora-reg;
    font-size: small;
    color: #000053;
    padding: 4px;
    border-width: 1px;
    border-radius: 4px;
    background-color: #6cffc6;
    cursor: pointer;
    width: fit-content;
    margin: 3px;
}
.parent {
    display: inline-flex;
}
.child {
    grid-column: span;
    display: inline-block;
    align-items: left;
    vertical-align: middle;  
}
label {
    font-family: sora-reg;
    font-size: small;
    color: #000053;
    padding: 4px;
    display:block;
}
.mdIn{
    font-family: 'Courier New', Courier, monospace;
    font-size: small;
    border: 1px solid black;
    background-color: white;
    overflow: scroll;
    padding: 3px;
    flex-grow: 1;
    word-wrap: break-word;
    white-space: normal;
}
.htmlOut {
    font-family: sora-reg;
    font-size: small;
    border: 1px solid black;   
    background-color: white;
    height: 100%;
    overflow: scroll;  
    padding: 3px;
}
.appContainer {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-basis:100%;
    flex-grow: 0;
    min-height: 0;

}
.unitContainerIn {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    padding-right: 2px;
    padding-bottom: 5px; 
    flex-grow: 1;
    min-width: 0;
}
.unitContainerOut {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    padding-left: 2px;  
    padding-bottom: 5px; 
    flex-grow: 1;
}
.info {
    font-family: sora-reg;
    font-size: small;
    color: #000053;
    margin-bottom: 10px;
}
table {
     border: 1px solid black;
    border-collapse: collapse;
    margin-left: 3px;
}
th, td {
    border: 1px solid black;
    border-collapse: collapse;
    margin: 1px;
    padding: 3px;
}
p {
    margin: 0px;
}