body {
    background: black;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: sans-serif;
}
#app {
    width: 100%;
    height: 100%;
}

.split {
    display: flex;
    flex-direction: row;
}

.gutter {
    background-color: #222;
    background-repeat: no-repeat;
    background-position: 50%;
}

.gutter.gutter-horizontal {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
    cursor: col-resize;
}

#map {
    position: relative;
    height: 100%;
    background: #030505;
}

/* Make codemirror editor scrollable */
.cm-editor {
    max-height: 100%;
    font-size: 0.9em;
}
.cm-scroller {
    overflow: auto;
}

.cm-tooltip.cm-tooltip-autocomplete {
    background: #222;
    color: white;
}
.cm-tooltip.cm-tooltip-autocomplete ul li {
    color: #bbb;
    background: #222;
}
.cm-tooltip.cm-tooltip-autocomplete ul li[aria-selected] {
    color: white;
    background: #444;
}

#route {
    max-height: 100%;
    overflow: auto;
}

.line_active {
    background: #f9f0c4;
    color: black;
}

