:root
{
    --background-color: #fff;
    --panel-color: #A6CEE2;
    --text-color: #000;
    --buttonface-color: #1b6ec2;
    --border-color: #1861ac;
    --link-color: #0071c1;
}

@media (prefers-color-scheme: dark)
{
    :root
    {
        --background-color: #1F1F1F;
        --panel-color: #1F1F1F;
        --text-color: #E0E0E0;
        --buttonface-color: #1b6ec2;
        --border-color: #1861ac;
        --link-color: #0071c1;
    }
}


html, body
{
    font: 14px Verdana;
    background-color: var(--background-color);
    color: var(--text-color);
}

p
{
    color: var(--text-color);
}

.dashPanel
{
    position: fixed;
    top: 0px;
    left: 0px;
    height: 160px;
    width: 100%;
    background-color: var(--panel-color);
    z-index: 1;
}

.logo
{
    position: fixed;
    top: 10px;
    left: 10px;
    width: 300px;
    height: 90px;
}

.header
{
    position: fixed;
    top: 15px;
    left: 350px;
    font-size: 18px;
    color: navy;
}

.headerTitle
{
    font-size: 18px;
}

.headerText
{
    font-size: 14px;
}
.buttons
{
    position: fixed;
    top: 110px;
    left: 10px;
}

.contentPanel
{
    position: relative;
    top: 160px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: var(--background-color);
    z-index: 0;
}

.contentPage
{
    margin: 20px;
}

.contentBlock
{
    position: relative;
    top: 25px;
    width: 100%;
    height: auto;
}

.contentBlock2
{
    position: relative;
    top: 200px;
    width: 100%;
    height: auto;
}

.contentBlock3
{
    position: relative;
    top: 200px;
    left: 10%;
    width: 80%;
    height: auto;
}

.pageTitle
{
    position: relative;
    display: block;
    width: 50%;
    margin: 0 auto;
    font-size: 24px;
    text-align: center;
}

.centerp
{
    display: block;
    width: 50%;
    margin: 0 auto;
    text-align: left;
}

.centerForm
{
    display:block;
    width: 50%;
    margin: 0 auto;
}

.pcenter
{
    display: block;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.divcenter
{
    display: block;
    position: relative;
    top: 100px;
    width: 50%;
    margin: 0 auto;
}

.tableCenter
{
    display: block;
    position: relative;
    top: 100px;
    width: 50%;
    margin: 0 auto;
}

.fiftypix
{
    width: 100%;
    height: 50px;
}

.spacer50
{
    width: 100%;
    height: 50px;
}

.spacer25
{
    width: 100%;
    height: 25px;
}

.custom-selected
{
    background-color: red;
}

.hidden
{
    display: none;
}


