/* ===== Календарь на странице клуба ===== */

.fixtures-list {
  border: 1px solid #f0f0f0;
  overflow: hidden;
  background: #ffffff;
  font-size: 14px;
}

/* Шапка таблицы */
.fixtures-header_club {
  display: grid;
  grid-template-columns: 80px 150px 1fr;
  column-gap: 10px;
  padding: 8px 12px;
  background: var(--club-primary-color-ui, #0e1c44);
  color: #ffffff;
  font-weight: 700;
}
.fixtures-header__cell {
  text-align: left;
}
.fixtures-header__cell--match {
  text-align: center;
}

/* Строка матча */
.fixtures-row {
  display: grid;
  grid-template-columns: 80px 150px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: inherit;
}

/* Чередование цветов строк */
.fixtures-body .fixtures-row:nth-child(odd) {
  background: #e8e8e8;
}
.fixtures-body .fixtures-row:nth-child(even) {
  background: #ffffff;
}

/* Hover/active состояния */
.fixture-row.fixture-row--link:hover {
  background: #f9fafb;
}
.fixture-row.fixture-row--link:active {
  background: #f3f4f6;
}
.fixture-row.fixture-row--link {
  cursor: pointer;
}

/* Ячейки */
.fixtures-cell--round,
.fixtures-cell--date {
  white-space: nowrap;
  font-size: 13px;
}
.fixtures-cell--match {
  overflow: hidden;
}

/* Внутри ячейки "Матч" */
.fixtures-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
}

/* Стороны матча и счёт — используем твои исходные стили */
.fixture-side {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fixture-side span {
  font-weight: 600;
}

.fixture-side--away {
  justify-content: flex-end;
  text-align: right;
}

.fixture-score {
  text-align: center;
  font-weight: 700;
  min-width: 40px;
}

.fixture-side img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
