﻿
/* ------------------------ Basic Element Overrides ------------------------ */

body {
    padding-bottom: 20px;
    background-color: #192127;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #ebebeb;
}

table { border-collapse: collapse; border-spacing: 0px; } /* CellSpacing of 0 */

th, td { padding: 0px; } /* CellPadding of 0 */

footer {
    padding: 10px 40px;
    color: white;
}

footer p {
    text-shadow: 0px -1px 0 rgba(0, 0, 0, 0.4);
}

/* --------- Styles for Validation Helpers - Comes with new MVC App --------- */

.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}