﻿body {
    padding: 10px;
}

#form1 {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}


h1 {
    font-size: 2.2rem; /*slightly smaller than the default bootstrap theme (so that it doesn't wrap with a 960px width (960=darpa.mil width)*/
}

h2 {
    font-size: 1.75rem;
}

h3 { font-size: 1.25rem; }

h1, h2, h3 { color: #153960; }

label { font-weight: bold; }

.formBody {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 25px;
}

footer {
    margin-top: 20px;
    background-color: #323232;
    color: white;
    position: relative;
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}


footer a {
    color: white;
    font-size: smaller;
    font-weight: normal;
}

footer a:hover {
    color: white;
}

.formError {
    margin-top: 20px;
    background-color: #DFDFDF;
    font-weight: bold;
    position: relative;
    padding: 15px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.formButton {
    min-width: 80px;
    padding-top: 10px;
}

.validate_div {
    font-weight: bold;
    color: #FF0000;
}

/*Text that should AVOID wrapping, but not completely stop wrapping (i.e. other text wraps first, but will wrap when needed)*/
span.avoidwrap {
    display: inline-block;
}

#appts_kGrid .k-grouping-row {
    position: sticky;
    top: 0;
    z-index: 2;
    background: white;
}

#appts_kGrid .k-column-title {
    width: 100%;
}

#appointment_kWindow {
    overflow-x: hidden;
}

.Field_div {
    padding-bottom: 10px;
}

.Field_Name {
    min-width: 120px;
    max-width: 200px;
    font-weight: bold;
}

.Field_Text {
    width: auto;
    min-width: 200px;
}

.Field_Input {
    max-width: 300px;
}

.Field_Required {
    width: 10px;
    font-weight: bold;
    color: #000000;
    text-align: right;
}

.gridHeaderContainer {
    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: auto auto;
    width: 100%;
    font-weight: bold;
}