    body {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 0.8em;
    }

    #banner {
        background: #fd0;
        font-size: 16px;
        color: #000;
        padding-left: 6px;
    }

    #header {
        background: #eee;
        width: 100%;
    }

    #main_form {
        padding-top: 0.5em;
    }

    #entire_window {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    input, textarea, select, button {
        font: inherit;
    }

    .template {
        display: none;
    }

    .btn:disabled, .btn.disabled {
        opacity: 0.3;
    }

    .mycontrol {
        border-radius: 4px;
        border: 1px solid #aaa;
    }

    .mylistbox {
        overflow-y: auto;
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 3px;
        padding-right: 3px;
    }

    .minor-inset {
        margin-left: 0.5em;
        margin-right: 0.5em;
    }

    .sep-right {
        margin-right: 20px;
    }

    .mycontrol:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    }

    .wordlist {
        border: 1px solid #888;
        border-radius: 0px;
        height: 195px;
        overflow-y: scroll;
        padding-left: 3px;
        padding-right: 3px;
        padding-top: 2px;
        background-color: white;
        margin-bottom: 3px;
    }

    select.short {
        width: 80px;
        height: 25px
    }

    select.medium {
        width: 120px;
        height: 25px;
    }

    label.short {
        width: 90px;
        display: inline-block;
    }

    #query_text {
        width: 100%;
        display: block;
        padding: 2px;
        margin-right: 1em;
        font-weight: bold;
        text-transform: uppercase;
    }

    .message-line {
        padding-left: 2px;
    }

    #helplocation {
        padding: 4px;
        border: solid black 1px;
        width: 300px;
        min-height: 100px;
    }

    #helplocation table {
        font-size: 12px;
    }

    #helplocation table td+td {
        padding-left: 4px;
    }

    #results_pane {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: auto;
    }

    #results_container {
        flex: 1;
        display: flex;
        overflow: auto;
    }

    #results {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: right;
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 0;
        padding-left: 4px;
    }

    /* These styles are only for non-mobile */

    @media (min-width: 650px) {
        #back_bar {
            display: none;
        }
        #message2 {
            display: none;
        }
        .spacy {
            padding-top: 4px;
            padding-bottom: 4px;
        }
    }

    /* These styles are for mobile */

    @media (max-width: 649.98px) {
        .hide-mobile, #downloadresults-1 {
            display: none;
        }
        #back_bar {
            background: #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        #back_button {
            margin: 3px 3px 3px 3px;
        }
        #back_bar_sort {
            margin-right: 3px;
        }
        #header {
            display: none;
        }
        #header.show-header {
            display: block;
        }
        #results_pane {
            display: none;
        }
        #results_pane.show-results {
            display: flex;
        }
        .spacy {
            padding-top: 1px;
            padding-bottom: 1px;
        }
    }