﻿
body {
    font-size: 1.0rem;
    font-family: Arial;
    background-color: #83807C;
}

header {
    background-color: #342F79;
    margin-bottom: 0;
    border-bottom: 2px solid #FF9300;
}

footer {
    background-color: #E9ECEF;
}

main {
    background-color: white;
    /*height: 100%;*/
    padding: 20px 50px 0 50px !important;
}

span.logo-white {
    color: white;
    font-weight: bold;
}

span.logo-lavender {
    color: lavender;
    font-style: italic;
}

span.logo-orange {
    color: #FF9300;
    font-weight: bold;
}

button.logo-link {
    color: #A4A2C3 !important;
}

.small {
    font-size: 0.8rem;
}

.tiny {
    font-size: 0.6rem;
}

.large {
    font-size: 1.2rem;
}

.normal {
    font-size: 1.0rem;
}

.bold {
    font-weight: bold;
}

hr.login-box {
    border-color: black;
}

div.login-box {
    width: 400px;
}

span.headline {
    font-weight: bold;
    font-size: 16px;
}

.nav-link:hover {
    text-decoration: underline;
}

table.inline {
    border: 2px solid darkgrey;
    border-collapse: collapse;
    width: 100%;
    height: 700px;
    display: flex;
    flex-flow: column;
    background-color: lightgrey;
}

table.inline > thead {
    flex: 0 0 auto;
    width: calc(100% - 16px);
}

table.inline > tbody {
    flex: 1 1 auto;
    display: block;
    overflow-y: scroll;
    background-color: white;
}

table.inline > tbody tr {
    width: 100%;
}

table.inline > thead, table.inline > tbody tr {
    display: table;
    table-layout: fixed;
}

table.inline > thead tr {
    border-bottom: 2px solid darkgrey;
    background-color: lightgrey;
}

table.inline tr {
    border-bottom: 1px solid darkgrey;
}

table.inline tr.inner {
    border-bottom: 1px solid lightgrey;
}

table.inline th, table.inline td {
    vertical-align: top;
    padding: 5px;
    /*text-align: left;*/
}

div.columns {
    display: flex;
    flex-direction: row;
}

div.right {
    text-align: right;
}

div.stretch {
    width: 100%;
}

div.no-break {
    white-space: nowrap;
}

span.label {
    /*background-color: lightgrey;*/
    color: white;
    font-weight: bold;
    padding: 0 5px 0 5px;
    border-radius: 3px;
}

span.warn {
    background-color: red;
}

span.ok {
    background-color: green;
}

.hide {
    visibility: hidden;
}