table{
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    border-spacing: 5px;
    font-family: Arial,  sans-serif;
    font-size: 15px;
    border: 2px solid  black;
    border-radius: 8px;
}

th{
    background-color: rgb(142, 131, 148);
    color: white;
    font-weight: bold;
    font-size:  16px;
    text-align: center;
    padding-bottom: 12px;
    padding-left: 18px;
    height: 50px;
    border: 3px solid black; 
}
td{
    padding-bottom: 10px ;
    padding-right: 15px;
    text-align: left;
    vertical-align: middle;
    border: 2px solid rgb(167, 149, 172);
}

tr:nth-child(odd){
    background-color: white;
}
tr:nth-child(even){
    background-color: rgb(240, 228, 204);
}
tr:hover{
    color: blue;
    cursor:grab;
}
caption{
    font-size: 20px;
    font-weight: bold;
}