html{}
:root{}
*{
    box-sizing: border-box;
}

body{
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
}

table{
    background-color: white;
    width: 80vw;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border-spacing: 0px;
    font-size: 0.9em;
    border-radius: 8px;
    border: 2px solid #005d8b;
}

thead tr{
    border-radius: 6px 6px 0px 0px;
}

thead tr th{
    background-color: #005d8b;
    color: white;   
    text-align: left;
}
thead tr th:first-child{
    border-radius: 6px 0px 0px 0px;    
}

thead tr th:last-child{
    border-radius: 0px 6px 0px 0px;    
}



td, th{

    padding: 6px;
}

tbody tr{
    border-bottom: 1px solid #005d8b;
} 

tbody tr:nth-child(even){
    background-color: #e1eef4;
}

tbody tr:hover{
    background-color: #005d8b;
    color: white;
}


tfoot tr{
    background-color: #e1eef4;    
    text-align: right;
    border-radius: 0px 0px 6px 6px;
    border-top: 1px solid #005d8b;
}

tfoot tr th{
    border-top: 1px solid #005d8b;
}


tfoot tr th:first-child{
    border-radius: 0px 0px 0px 6px;
}
tfoot tr th:last-child{
    border-radius: 0px 0px 6px 0px;
}

tfoot tr ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

tfoot tr ul li{
    display: inline-block;
}

tfoot tr ul li a{
    display: block;
    padding: 8px;
    background-color: #005d8b;
    color: #e1eef4;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 6px;
}