header
{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    justify-content: center;
    background-color:#EEEEEE;
}
nav {
    float: left;
    font-size: 0.9rem;
    width: 150px;
}
nav ul
{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding-left: 5px;
}

nav ul ul {
    padding-left: 15px;
}

nav li
{
    /**margin-right: 5px;/**/
}

a {
    color: #333;
    font-style: italic;
}

nav a
{
    font-size: 1.1em;
    color: #181818;
    padding-bottom: 3px;
    text-decoration: none;
}

nav a:hover
{
    color: #760001;
    text-decoration:underline;
    font-weight: bold;
}

section
{
    display: flex;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

#container {
    padding-left: 20px;
    flex-direction: column;
}

#calls_table td {
    border-bottom: 1px solid #EEE;
    border-radius: 5px;
    padding: 3px 5px;
}

td.call_status {
    font-weight: bold;
}

#calls_table td.call_status {
    text-align: center;
}

td.status_waiting {
    color: #DAA520;
}

td.status_running {
    color: #20B2AA;
}

td.status_done {
    color: #006400;
}

td.status_error {
    color: #B22222;
}

td.status_unknown {
    color: #4B0082;
}


#calls_table tr.status_waiting td {
    background-color: #FBEBC5;
}

#calls_table tr.status_running td {
    background-color: #A8DEDB;
}

#calls_table tr.status_done td {
    background-color: #94ce94;;
}

#calls_table tr.status_error td {
    background-color: #F6A6A6;
}

#calls_table tr.status_unknown td {
    background-color: #C6ADD8;
}

footer
{
    display: flex;
    padding-top: 25px;
    clear: both;
    justify-content: center;
}

#calls_table tr:nth-child(even){
    /**background-color: #F0FEFE;**/
}


td.tab_c{ 
    text-align: center;
}

.tab_call_details {
    border-collapse: collapse;
}

.tab_call_details td {
    border-bottom: 1px solid #999;
}

.lbl {
    font-style: italic;
    color: #666;
    padding: 5px;
    text-align: right;
    width: 200px;
}

.login_form input {
    padding: 5px;
    margin: 5px;
    border: 1px solid #999;
    border-radius: 5px;
}