html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    padding-top: 20px;
    background-color: #F0F0F0;
    font-family: Arial, Verdana, serif;
}

form input {
    padding: 4px 6px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border linear .2s, box-shadow linear .2s;
}

input[type=text]:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

#logoutForm {
    text-align: right;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
}

.header-right img {
    width: 206px;
    height: 56px;
}

.centered-content {
    padding: 0 4% 1em 4%;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
}

.result-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.results {
    padding-top: 20px;
}

.flex-group {
    display: flex;
    flex-wrap: wrap;
}

.flex-content {
    min-width: 200px;
    padding: 0 10px 10px 0;
}

.cell-title {
    font-weight: bold;
}

.search-button {
    color: #333;
    background-image: linear-gradient(to bottom, #fff, #e6e6e6);
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 6px;
}

.search-button:hover,
.search-button:focus {
    text-decoration: none;
    border: 1px solid rgba(82, 168, 236, 0.6);
}

.input-form {
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 20px;
}

.footer-text {
    color: #333;
}

.login-form{
    max-width: 400px;
    padding: 15px;
    margin: 0 auto;
}
