/* Wrapper geral */
.stage-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Label da rodada */
.stage-round {
  text-align: center;
  margin: 8px 0;
}

.stage-round span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  background: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

/* Card do confronto */
.stage-match {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
}

/* Times */
.stage-team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}

.stage-team img {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

.stage-team--left {
  justify-content: flex-end;
  text-align: right;
}

.stage-team--right {
  justify-content: flex-start;
}

.team-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
  white-space: nowrap;
}

/* VS */
.stage-vs {
  font-weight: 700;
  color: #bbb;
}
