@font-face{
    font-family: Menlo;
    src: url('Menlo.ttf');
}

@font-face{
    font-family: Roboto;
    src: url('Roboto.ttf');
}

*{
    margin: 0;
    padding: 0;

    outline: none;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;

    color: #d4d4d4;
    line-height: 150%;

    scrollbar-width: 13px;
    scrollbar-color: #ffffff20 #282828;
}

*::-webkit-scrollbar {
    height: 13px;
    width: 13px;
}

*::-webkit-scrollbar-track {
    background: #282828;
}

*::-webkit-scrollbar-corner {
    background: #282828;
}

*::-webkit-scrollbar-thumb {
    background: #ffffff20;
}

*::-webkit-scrollbar-thumb:hover {
    background: #ffffff40;
}

.Loading_Screen {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    margin-bottom: 22px;

    background-color: #1e1e1e;
    z-index: 1;
}

.Loading_Screen_Footer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 22px;
    width: 100vw;
    
    background-color: #c82126;
    z-index: 1;
}

.IDE {
    background-color: #1e1e1e;

    font-family: Menlo, monospace;
    font-size: 12px;

    height: 0vh;
    width: 0vw;
}

.Text_Editors {
    float: left;
    height: 100%;
    width: 50%;
}

.Formatted_Editor_Vssl {
    height: 100%;
    width: 100%;
}

.Row_Numbers_Ctnr {
    float: left;

    height: 100%;
    margin-left: 12px;
    margin-right: 12px;

    text-align: right;

    overflow: hidden;
}

.Row_Numbers {
    padding-bottom: 15px;

    color: #858585;

    font-family: inherit;
    font-size: inherit;
}

.Formatted_Editor_Ctnr {
    display: grid;
    height: 100%;
}

.Formatted_Editor {
    border: none;
    resize: none;
    height: inherit;
    width: 100%;

    padding-bottom: 15px;

    overflow: scroll;
    white-space: pre;

    background-color: transparent;

    font-family: inherit;
    font-size: inherit;

    cursor: auto;
}

.Raw_Editor_Ctnr {
    height: 50%;
    width: 100%;

    padding-left: 12px;

    overflow-y: scroll;

    background-color: #1e1e1e;
    border-top: 2px solid #434343;

    font-family: inherit;
    font-size: inherit;
}

.Raw_Editor {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.Footer_Ctnr {
    display: table;
    position: fixed;
    height: 22px;
    width: 100%;
    bottom: 0;

    padding-left: 12px;
    padding-right: 12px;

    justify-content: center;
    font-family: Roboto;
    font-size: 12px;

    background-color: #c82126;
    color: #ffffff;  
}

.Footer_Text {
    display: table-cell;
    vertical-align: middle;

    text-align: right;

    color: inherit;  
}

.Footer_Button {
    display: table-cell;
    vertical-align: middle;

    padding-right: 7px;
    padding-left: 7px;

    border: none;
    transition-duration: 0.1s;

    cursor: pointer;

    background-color: transparent;

    font-family: Menlo;

    font-size: 15px;
}

.Footer_Button:hover {
    background-color: #ffffff20;
}

.Resources {
    float: left;
    height: 100%;
    width: 50%;

    border-left: 2px solid #434343;
}

.Local_Variables {
    height: 50%;
    width: 100%;

    overflow-y: scroll;
}

table{
    width: 100%;
    border: 2px solid #282828;
    border-collapse: collapse;
}

tr, th {
    border: 1px solid #282828;
}

th {
    width: auto;
}

input {
    display: block;
    width: 100%;
    border: none;

    background-color: transparent;

    font-family: inherit;
    font-size: inherit;
}

input:focus {
    outline: 1px solid #5e5e5e;
    outline-offset: 0px;
}

.Network_Devices {
    height: 50%;
    width: 100%;

    overflow-y: scroll;

    border-top: 2px solid #434343;
}