@font-face {
    font-family: droidSans;
    src: url(/ngdl/media/DroidSansMono.ttf);
}

html, body {
    margin:0;
    padding:0;
}

#memoryDisplay {
    width: fit-content;
    border: 1px solid black;
    background-color: gray;
    border-radius: 5px;
    padding: 10px;
    margin: 5px;
    float: right;

    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

#editor {
    width: auto;
    border: 1px solid black;
    background-color: gray;
    border-radius: 5px;
    padding: 10px;
    float: left;
    margin: 5px;

    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#ideContainer {
    font-family: droidSans;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: vertical;
    border: none;
    background-color: #a0a0a0;
    min-height: 50vh;
}

#textarea:focus {
    outline: none;
}

#activeByte{
    color: gold;
}

body {
    background-color: #45494a;
}

.index {
    padding-right: 10px;
}

.console {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;  
  resize: none;
  min-height: 0;
}

hr {
    margin-top: 1px;
    margin-bottom: 5px;
    border-color: #666666;
}


#hexEditortTable,
#syntaxDoc {
    border-collapse: collapse;
}

#hexEditortTable, 
#hexEditortTable th, 
#hexEditortTable td{
    border-right: 1px solid black;
    border-left: 1px solid black;
    padding-right: 7px;
    padding-left: 7px;
}

#hexEditortTable .active{
    background-color: #ccc;
}

#hexEditortTable .editCell{
    background-color: #fff;
}

#syntaxDoc th, 
#syntaxDoc td {
    border-right: 1px solid black;
    border-left: 1px solid black;
    border-top: 1px dotted rgb(71, 71, 71);
    border-bottom: 1px dotted rgb(71, 71, 71);
    padding-right: 7px;
    padding-left: 7px;
}

#hexEditor {
}

#syntaxDocContainer {
}

#syntaxDoc {
    border: 1px solid black;
    margin-top: 10px;
    margin-bottom: 10px;
}