*
{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body
{
    margin: 0;
    padding: 0;
}
table
{
    border-collapse: collapse;
    width: 100%;
}
tr:nth-child(even)
{
    background: rgba(0,137,202,0);
}
tr:nth-child(odd)
{
    background: rgba(0,137,202,0.1);
}
tr:hover, tr:first-child
{
    background: #0089CA;
    color: white;
}
tr:hover
{
    cursor: pointer;
}
tr:first-child
{
    cursor: default;
}
tr:first-child th
{
    overflow-wrap: break-word;
}
td, th
{
    padding: 0.5rem;
}
nav
{
    position: fixed;
    top: 0;
    width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}
nav ul
{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-grow: 2;
    justify-content: flex-end;
    align-items: stretch;
    align-content: space-around;
    background-color: #0089CA;
    font-weight: bold;
}
nav ul a
{
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 0;
    padding: 0 1rem;
    text-align: center;
}
nav ul a:first-child
{
    flex-grow: 5;
    text-align: left;
}
nav ul a li
{
    margin: 1rem;
}
#searchbar
{
    font-size: 1rem;
    padding: 0.5rem;
    margin: 1rem 0;
    width: 100%;
}
footer
{
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0.5rem;
}
section
{
    margin: 6rem 2rem 2rem 2rem;
}
.oxane_logo_big
{
    margin: auto;
    width: 20rem;
    max-width: 100%;
    display: block;
}
.flex-row
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}
.flex-row > *
{
    flex-grow: 1;
}
.flex-col
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
}
p
{
    margin: 0.5rem;
    padding: 0;
}
hr
{
    width: 100%;
    color: #0089CA;
}
#task_warning_a
{
    background: url('/assets/img/task_to_do.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 4rem;
    height: 4rem;
}
#task_warning_li
{
    color: white;
    text-align: center;
}
a
{
    text-decoration: none;
}
button:hover
{
    cursor: pointer;
}

.confirmation-popup .swal2-actions, .simple-popup .swal2-actions
{
    margin-right: 50px;
    margin-left: 50px;
}

#background
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 95%;
    opacity: 0.05;
    z-index: -50;
}
#user-icon
{
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
#user-icon:hover
{
    cursor: pointer;
}
#user-icon img
{
    width: 2rem;
    margin: 0.5rem 0rem;
}
#user-icon-div
{
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    color: #0089CA;
    background-color: white;
    border-collapse: collapse;
    font-size: 1rem;
}
#user-icon-div *
{
    border: solid #0089CA 1px;
    border-top: 0px;
    padding: 1rem;
}
#user-icon-div a:visited
{
    text-decoration: none;
    color: #0089CA;
}
#user-icon-div *:hover
{
    background-color: #0089CA;
    color: white !important;
}
#username-display
{
    font-size: 0.8rem;
    text-align: left;
    margin: auto 0.5rem;
}
