.content-table {
  border-collapse: collapse;
  margin: 25px auto;
  font-size: 1.7rem;
  width: 85%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
  background-color: #007cdd;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
  font-weight: 500;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #007cdd;
}

.content-table tbody tr:hover {
  color: #007cdd;
}

@media (max-width: 480px) {
  .content-table {
    width: 90%;
    font-size: 1.5rem;
  }
  .content-table th,
  .content-table td {
    padding: 10px 8px;
  }
}
