﻿#searchWrap {
    height: max-content;
    padding: 1rem;
    margin: 0rem auto 1rem;
    border: 2px #9bb2d1 solid;
    background-color: #eee;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

#TextBox1 {
    width: 100%;
    height: 2rem;
    font-size: 100%;
    padding: 0.5rem;
}

.button {
    cursor: pointer;
    text-align: center;
    align-items: center;
    font-size: 115%;
    height: 3rem;
    border: none;
    border-radius: 8px;
    color: #fff;
    background-color: #0080cb;
    padding: 0.5rem 3rem;
    letter-spacing: 0.08em;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -ms-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
}

    .button:hover {
        background-color: #fff;
        border: 1px solid #0080cb;
        color: #0080cb;
        -webkit-transition: .25s;
        -moz-transition: .25s;
        -ms-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
    }

.ResultsTable th {
    background-color: #435084;
    border: solid #9bb2d1 1px;
    color: #fff;
    font-size: 120%;
    font-weight: lighter;
}

.ResultsTable tr:nth-child(even) {
    background-color: #fff;
}

.RunTime {
    width: 95%;
    font-size: 1.5em;
    font-weight: bolder;
    border: 2px #9bb2d1 solid;
    background-color: #eee;
}
