* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

table {
  text-align: center;
  border-collapse: collapse;
}

thead tr {
  background-image: linear-gradient(#A6EDFF, #95D6E6);
}

thead tr th {
  padding: 6px;
}

tbody tr td {
  padding: 8px 10px;
}

tr[class="to-read"] {
  background-image: linear-gradient(#FFF3EB 5%, #FF996E);
}

tr[class="in-progress"] {
  background-image: linear-gradient(#FFFAEB 5%, #FFDD6E);
}

tr[class="read"] {
  background-image: linear-gradient(#F2FFEB 5%, #7CFF6E);
}

span {
  display: inline-block;
}

tr[class="to-read"] span[class="status"] {
  border: 2px solid rgb(182, 60, 60);
  background-image: linear-gradient(#FF4D33, #E8422A);
}

tr[class="in-progress"] span[class="status"] {
  border: 2px solid rgb(126, 137, 23);
  background-image: linear-gradient(#FADB57, #D6B626);
}

tr[class="read"] span[class="status"] {
  border: 2px solid rgb(48, 139, 69);
  background-image: linear-gradient(#A9FA57, #87D934);
}

span[class="status"], span[class^="rate"] {
    height: 1.9em;
    width: 7em;
    padding: 0.3em;
}

span[class="status"] {
  border-radius: 20px;
}

span[class^="rate"] {
  display: flex;
  vertical-align: center;
}

span[class^="rate"] > span {
  border-radius: 25px;
  background-color: white;
  border: 2px solid gray;
  height: 18px;
  width: 18px;
  margin: 2px;
}

span[class~="one"] :first-child {
  background-image: linear-gradient(#FFEC29, #F0E42B);
}

span[class~="two"] :nth-child(1), span[class~="two"] :nth-child(2) {
  background-image: linear-gradient(#FFEC29, #F0E42B);
}

span[class~="three"] span {
  background-image: linear-gradient(#FFEC29, #F0E42B);
}