.header
{
    border-bottom: 1px #cccccc solid;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 5px;
    background-color: #ffffff;
    box-shadow: 0px 3px 5px 0px #eeeeee;
}

.leftHeaderSection
{
    width: 33%;
    align-items: center;
    display: flex;
    justify-content: start;
}

.middleHeaderSection
{
    width: 33%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.rightHeaderSection
{
    width: 33%;
    align-items: center;
    display: flex;
    justify-content: end;
}

.header a
{
    font-size: 18pt;
    font-weight: bold;
    margin-left: 15px;
    margin-right: 15px;
}

.header a:link { 
    text-decoration: none; 
    color: var(--text-color);
}

.header a:visited { 
    text-decoration: none; 
    color: var(--text-color);
}

.header a:hover { 
    text-decoration: underline; 
    color: var(--text-color);
}

.header a:active { 
    text-decoration: underline; 
    color: var(--text-color);
}