﻿html, body, form {
    height: 100%;
    margin: 0;
}

html, body, .GridView {
    font-family: 'Roboto', sans-serif;
    color: hsl(0, 0%, 20%);
}

#siteContainer {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#siteHeader {
    padding: 25px 0 18px 0;
    background-color: rgb(235,235,235);
}

#siteBody {
    padding: 20px 10px 15px 10px;
    flex: 1 1 auto;
    overflow: auto;
}

#siteBody_Table {
    padding: 10px 80px 5px 80px;
    flex: 1;
    overflow: auto;
}

#siteFooter {
    height: 34px;
    display: flex;
    justify-content: center;
    padding-top: 14px;
    color: rgb(135,135,135);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    background-color: rgb(235,235,235);
}

#siteFooter a {
    text-decoration: none;
    color: inherit;
}

div.error-container {
    margin: 5px;
    padding: 5px;
    text-align: center;
    max-width: 100%;
}
div.error-container > span {
    color: #ff0000;
}