body {
    font-family: monospace;
    width: 100%;
    height: 100%;
    font-size: 110%;
}
.map {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2000;
}
#query-editor {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    background: white;
    text-align: center;
    padding-bottom: 10px;
}
#query-editor textarea, input, #query-string {
    border: 0;
    outline: 0;
    font-family: monospace;
    background: transparent;
}
#query-editor textarea, #query-submit {
    min-width: 100%;
    display: block;
    text-align: center;    
}
#query-string {
    cursor: pointer;
    width: 100%;
}
#query-editor textarea {
    overflow: hidden;
    resize: none;
}
#query-editor form {
    padding: 10px;
}
input:focus {
    outline: none !important;
}
input[type="text"] {
    padding-left: 0;
    margin-left: 0;
    max-width: 100%;
}
input[type="submit"] {
    background: black;
    color: white;
    padding: 4px;
}
#query-string:active, #query-submit:active {
    filter: invert(20%);
}
