table {
    display: inline-block;
    vertical-align: top;
    width:100%
}
tr td {
    text-align: center;
    padding: 0.8em 0.5em;
    width: 12em;
}
thead tr td {
    font-weight: bolder;
    color: #223f6e;
}
tr td:first-child {
    width: 8em;
    text-align: left;
    font-style: italic ;
    font-weight: lighter;
}
tbody tr:nth-child(odd) td {
    background-color: #cde6ff;
}
tbody tr:nth-child(odd) td:first-child {
    background-color: #ffffff;
}
tbody tr:nth-child(odd) td:nth-child(2) {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
tbody tr:nth-child(odd) td:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
tbody tr:last-child:nth-child(even) td {
    padding-bottom: 1em;
    border-bottom:1px solid lightgrey;
}
