table:not(.tt) {
  border-collapse: collapse;
  width: 100%;
  background-color: black;
}

th:not(.tt), td:not(.tt) {
  border: 1px solid #999;
  padding: 1px;
  text-align: left;
}

/* Нечётные строки (1, 3, 5...) — один цвет */
tr:not(.tt):nth-child(odd) {
  background-color: #fff; /* Белый фон */
}

/* Чётные строки (2, 4, 6...) — другой цвет */
tr:not(.tt):nth-child(even) {
  background-color: lightgray /*#f2f2f2; /* Светло-серый фон */
}
