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

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

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

thead tr th{
    background-color: #6c79e0;
    color: white;   
}
thead tr th:first-child{
    border-radius: 8px 0px 0px 0px;    
}

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

td, th{

    padding: 6px;
}

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

tbody tr:hover{
    background-color: #edecff;
}
