table.school-leaderboard {
  border-collapse: separate;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-spacing: 0px;
}
table.school-leaderboard tr {
  border-bottom: 1px solid #e5e7eb;
}
table.school-leaderboard th,
table.school-leaderboard td {
  padding: 1rem 1.75rem;
}
table.school-leaderboard th {
  background-color: #00abc2;
  color: white;
}
table.school-leaderboard th:not(:last-child) {
  border-right: 1px solid #ccc;
}

table.school-leaderboard tbody tr:nth-child(2n) {
  background-color: #f4feff;
  transition: background-color 0.5s ease;
}
table.school-leaderboard tbody tr:hover {
  background-color: #ccf1f5;
}

table.school-leaderboard tbody td {
  text-align: center;
}
table.school-leaderboard tbody td:nth-child(2) {
  text-align: left;
}