* {
    padding: 0;
    margin: 0;
}

body {
    background: #222;
    height: 100%;
    font-family: "Helvetica Neue", sans-serif;
    color: #eee;
}


html {
    height: 100%;
}

.container {
    display: flex;

    /* Misc */
    /*border: 1px solid #cbd5e0;*/
    height: 100%;
    width: 100%;

}
.container__left {
    /* Initially, the left takes 3/4 width */
    width: 50%;

    /* Misc */
    align-items: center;
    display: flex;
    justify-content: center;
}
.resizer {
    background-color: #707070;
    cursor: ew-resize;
    height: 100%;
    width: 2px;
}
.container__right {
    /* Take the remaining width */
    flex: 1;

    /* Misc */
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: scroll;
}

textarea {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 0;
    color: #eee;
    background: #222222;
    padding: 2em;
}

#editor {
    width: 100%;
    height: 100%;
}

#results {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 1em;
}

table {
    border-collapse: collapse;
    margin: 0;
    font-size: .8em;
    /*font-family: sans-serif;*/
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 1em;
}

thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

th, td {
    padding: .5em 1em;
}

tbody tr {
    border-bottom: 1px solid #dddddd;
}

tbody tr:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

 tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

p {
  margin-bottom: 18px;
}

h1 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 18px;
}
h2 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 18px;
}
h3 {
  font-size: 12px;
  line-height: 18px;
}