/* CSS Document */
* {
  font-family: 'Quicksand', sans-serif;
}
.content-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  min-width: 400px;
  border-radius: 5px 5px 0 0;
  overflow: scroll;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.content-table thead tr {
  background-color: #009879;
  color: #FFFFFF;
  text-align: left;
  font-weight: bold;
}
.content-table th, .content-table td {
  padding: 12px 15px;
}
.content-table tbody tr {
  border-bottom: 0px solid #dddddd;
}
.content-table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}
.content-table tbody tr:last-of-type {
  border-bottom: 1px solid #009879;
}
.content-table a {
  color: black;
  text-decoration: none;
}
.content-table tbody tr:hover {
  background-color: hsla(168, 100%, 30%, 0.15);
}
.content-table tbody tr:hover a {
  color: #009879;
}