.rating-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-color: #000; /* черный фон */
  color: #fff; /* белый текст */
}

/* Заголовки таблицы */
.rating-table th {
  background-color: #211a43;
  color: #e0e0e0;
  padding: 12px;
  text-align: left;
}

/* Ячейки таблицы */
.rating-table td {
  padding: 12px;
  border-bottom: 1px solid #444;
}

/* Скругление краев для всей таблицы */
.rating-table tr:first-child td:first-child {
  border-top-left-radius: 10px;
}
.rating-table tr:first-child td:last-child {
  border-top-right-radius: 10px;
}
.rating-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.rating-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* Четные строки (инверсия) */
tbody tr:nth-child(odd) {
    background-color: #fafafa; /* светлый фон для нечетных строк (учитывая нумерацию с нуля) */
    color:#636363; 
}

/* Нечетные строки (инверсия) */
tbody tr:nth-child(even) {
   background-color:#e7e7e7; /* серый фон для четных строк */
   color:#636363; 
}

.rating-table tbody tr:hover {
  background-color: #dfecff; /* Цвет при наведении */
}
