table {
  background:#FFFFFF;
  caption-side: bottom;
  border-radius: 10px 10px 10px 10px;
}

caption {
  font-variant: small-caps;
  color: gray;
}


table thead ::first-letter{   
    color:#F9E4B7;
}


th{
    background-color: salmon;
}


th:first-child{
    border-radius: 10px 0 0 0;
}
th:last-child{
    border-radius: 0 10px 0 0;
}

tr:last-child td:last-child{
    border-radius: 0 0 10px 0;
}
tr:last-child td:first-child{
    border-radius: 0 0 0 10px;
}


td:first-child{
    font-weight: bold;
    text-transform: uppercase;
    font-variant-caps: all-small-caps;
}
td:first-child::first-letter{
    font-variant-caps: normal;
    color: crimson;
}

td:last-child::before{
    content: "✆";
    color:#E1C699;
    font-weight: bold;
}


td:nth-child(2){
    font-style: italic;
}

td{
    background-color: #fff8e7;
    padding: 10px 10px 10px 10px;
}

tr:nth-child(2n) td{
    background-color: #F9E4B7;
}


li ul::first-child {
    color: red;
}
