.match-tabs {
  margin: 20px 0;
}

.match-tabs__nav {
  margin: 0 0 16px;
}

.match-tabs__panel[hidden] {
  display: none;
}

.match-tabs__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.match-tabs__placeholder {
  text-align: center;
  color: #9ca3af;
  font-size: 15px;
  padding: 48px 16px;
}

.match-predictions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.match-predictions__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match-predictions__main-title,
.match-predictions__other-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #232323;
}

.match-predictions__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match-predictions__show-more {
  align-self: center;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #232323;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.match-predictions__show-more:hover {
  border-color: #9345d8;
  color: #9345d8;
}

.match-predictions__show-more:disabled,
.match-predictions__show-more--loading {
  opacity: 0.6;
  cursor: progress;
}

.match-predictions__empty {
  padding: 48px 16px;
  text-align: center;
  color: #9ca3af;
  font-size: 15px;
}

@media (max-width: 768px) {
  .match-tabs__panels {
    padding: 16px;
    border-radius: 10px;
  }

  .match-tabs__placeholder {
    padding: 32px 12px;
  }

  .match-predictions__main-title,
  .match-predictions__other-title {
    font-size: 18px;
  }

  .match-predictions__empty {
    padding: 32px 12px;
  }
}
