body {
    background-color: #111122;
    color: #ffffff;
    font-size: 16px;
    font-family: sans-serif;
    height: 100%;
    margin: 0;
}

#controls {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    text-align: center;
}

#title {
    font-size: 24px;
    margin-bottom: 20px;
}

button {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#toggleInputs {
    float: left;
    margin: 0;
    margin-left: 25px;
    margin-top: 15px;
    display: none;
}

#userFile {
    margin-left: 70px;
    margin-bottom: 40px;
}

#userText, #search {
    width: 750px;
    max-width: 750px;
    min-width: 750px;
    background-color: #000000;
    color: #bbbbbb;
}

#userText {
    height: 60px;
    margin-bottom: 15px;
}

#parseButton {
    margin-bottom: 30px;
}

#search {
    height: 20px;
    border-style: ridge;
}

#loading {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0;
    width: 25px;
    height: 25px;
}

#loadingImage {
    border: 4px solid #444444; /* Light grey */
    border-top: 4px solid #44aaff; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    padding: 0;
    margin: 0;
    width: 17px;
    height: 17px;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content {
    text-align: left;
    margin-left: 20px;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-right: 20px;
    padding-top: 5px;
    color: #cccccc;
    background-color: #000000;
    border: 1px solid #555555;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: scroll;
}

.line {
    overflow-x: visible;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 10px;
    padding-right: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.lineNum, .lineText {
    display: inline-block;
    padding-top: 2px;
}

.lineNum {
    background-color: #223366;
    color: #ffffff;
    width: 60px;
    margin-right: 8px;
    padding-right: 4px;
    text-align: right;
    border-radius: 3px;
}

b {
    color: #44aaff;
}

#filtered, #unfiltered {
    display: none;
    height: 50vh;
}

::-webkit-scrollbar {
    background-color: #111111;
    width: 13px;
    height: 13px;
}

::-webkit-scrollbar:horizontal {
    border-top: 1px solid #2d2d2d;
}

::-webkit-scrollbar:vertical {
    border-left: 1px solid #2d2d2d;
}

::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #444444;
    box-shadow: inset 0 0 8px rgba( 17, 17, 17, 1 );
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555555;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-corner {
    background-color: #111111;    
}

::-webkit-resizer {
    background-position: 5px 5px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAALUlEQVQYV2NkwAKuXLnynxFdHCSoo6PDiCIBEwQphksgC8Il0AXBdmATBNkBADWMHv3ZkWGbAAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
}

::placeholder {
    color: #666666;
    font-style: italic;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #666666;
    font-style: italic;
}
::-ms-input-placeholder {
    color: #666666;
    font-style: italic;
}