/*lets override the variables*/
:root {
    --site-bg-color: white;
    --site-logo: #032CD0;
    --site-primary: #DBEFFD;
    --site-secondary: #188AD0;
}

html {
  font-size: 14px;
  background: var(--site-bg-color);
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 50px;
  background-color: var(--site-primary);
}

header {
    background: var(--site-primary);
}

header nav {
    background-color: var(--site-secondary);
}

.navbar-brand img {
    height: 50px;
    max-width: 200px;
    max-height: 50px;
}

main {
    min-height: 600px;
}

#mainNav {
    flex-grow: 0;
}

footer {
    background-color: var(--site-primary);
}
footer div.real-footer {
    background-color: var(--site-secondary);
}
/*Allow Bootstrap responsive tables with drop down lists to display cleanly */
.table-responsive .dropdown,
.table-responsive .btn-group,
.table-responsive .btn-group-vertical {
    position: static;
}

.card-body th {
    background-color: var(--site-primary);
    color: black;
    font-weight: bold;
}

.report-header {
    border: 4px double black;
    border-top: none;
    border-left: 0;
    border-right: 0;
    padding-bottom: 3px;
}

.report-card {
    cursor: pointer;
}
