﻿:root {
    --default-text-color: #262626;
    --default-row-margin: 8px;
    --table-border-radius: 4px;
    --table-border-color: #bbbbbb;
    --table-col-separator-color: #f5f5f5;
    --table-header-background-color: #d1d1d1;
    --table-header-text-color: #262626;
    --table-row-color: #ffffff;
    --table-alternate-row-color: #f5f5f5;
    --table-row-text-color: #262626;
    --container-border-color: #bbbbbb;
    --container-background-color: #f5f5f5;
    --container-border-radius: 4px;
    --container-padding: 16px;
}

body, table, input {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    font-stretch: normal;
}

body, table, input {
    color: var(--default-text-color);
}

table {
    border-collapse: separate;
    border-spacing: 0;
}
.table tr th,
.table tr td {
    /*
    border-right: 1px solid #bbbbbb;
    border-bottom: 1px solid #bbbbbb;
    */
    height: 30px;
    padding-left: 12px;
    padding-right: 12px;
}
.table tr th:first-child,
.table tr td:first-child {
    border-left: 1px solid var(--table-border-color);
}
.table tr th,
.table tr td {
    border-right: 1px solid var(--table-col-separator-color);
}
    .table tr th:last-child,
    .table tr td:last-child {
        border-right: 1px solid var(--table-border-color);
    }
.table tr th {
    border-top: 1px solid var(--table-border-color);
    text-align: left;
}
/* top-left border-radius */
.table tr:first-child th:first-child {
    border-top-left-radius: var(--table-border-radius);
}
/* top-right border-radius */
.table tr:first-child th:last-child {
    border-top-right-radius: var(--table-border-radius);
}
/* bottom-left border-radius */
.table tr:last-child td:first-child {
    border-bottom-left-radius: var(--table-border-radius);
}
/* bottom-right border-radius */
.table tr:last-child td:last-child {
    border-bottom-right-radius: var(--table-border-radius);
}
.table tr:last-child td, .table tr:last-child th {
    border-bottom: 1px solid var(--table-border-color);
}
.table tr:nth-child(odd) {
    background: var(--table-alternate-row-color);
}
.table tr:nth-child(even) {
    background: var(--table-row-color);
}
.table tr th {
    background: var(--table-header-background-color);
    color: var(--table-header-text-color);
}
.table tr td {
    color: var(--table-row-text-color);
}



.container {
    border: 1px solid var(--container-border-color);
    border-radius: var(--container-border-radius);
    background: var(--container-background-color);
    padding: var(--container-padding);
    margin-bottom: var(--default-row-margin);
}


input[type=text], input[type=password] {
    padding: 8px 12px 8px 12px;
    outline: none;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: var(--default-row-margin);
}

input[type=button], input[type=submit], button, input[type=file]::-webkit-file-upload-button {
    padding: 8px 12px 8px 12px;
    height: 30px;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    background: #64B982;
    border-radius: 4px;
    color: #FFFFFF;
    border: none;
    outline: none;
    margin-bottom: var(--default-row-margin);
}

input[type=button]:hover, input[type=submit]:hover, input[type=file]::-webkit-file-upload-button:hover {
    background: #83C79B;
    cursor: pointer;
}

input[type=button]:active, input[type=submit]:active, input[type=file]::-webkit-file-upload-button:active {
    background: #A2D5B4;
}

input[type=file]::-webkit-file-upload-button {
    background: #ffffff;
    color: #64b982;
    border: 1px solid #64b982;
}
input[type=file]::-webkit-file-upload-button:hover {
    background: #ffffff;
    color: #83c79b;
    border: 1px solid #83c79b;
}
input[type=file]::-webkit-file-upload-button:active {
    background: #ffffff;
    color: #a2d5b4;
    border: 1px solid #a2d5b4;
}

span.title {
    font-weight: bold;
    font-size: 12pt;
    padding: 2px;
}

span.version 
{
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    display: block;
}

.headerlinkbar 
{
    padding: 2px 2px 10px 2px;
}

.headerlinkbar a 
{
    xxfont-size: 80%;
    xxfont-family: Arial;
}

span.error {
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    background: #EFA4A4;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 12px 16px 12px 16px;
    margin: 12px;
}

div.errormessage 
{
    background-color: #ff0000;
    display: block;
    color: #ffffff;
    padding: 5px;
    margin: 5px;
    font-weight: bold;
}

div.infomessage 
{
    background-color: #003377;
    display: block;
    color: #ffffff;
    padding: 5px;
    margin: 5px;
    font-weight: bold;
}

.files_special_row
{
    background-color: #eeeeee;
}

a, a:visited {
    margin: 0 4px 0 4px;
    text-decoration: none;
    color: #3D70B0;
}

a:hover {
    text-decoration: underline;
}

div.headerdiv a, div.headerdiv a:visited {
    color: #ffffff;
}

div.headerdiv {
    /*background-color: #eeeeee;*/
    color: #ffffff;
    background: #6798D2;
    margin: -10px -10px 20px -10px;
    margin-bottom: 20px;
    padding: 4px 4px 4px 48px;
    background-image: url("../R/images/P.png");
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: 8px, center;
}

body 
{
    padding: 0;
    margin: 0;
}

body form 
{
    margin: 10px;
}

.PanelSeparator 
{
    margin-bottom: 10px;
}
