.matchup-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}

.centered {
  text-align: center;
  margin-bottom: 1rem;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  gap: 2rem;
}

.column {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}


.label {
  font-weight: bold;
  color: #888;
}

.win_score {
    font-weight: bold;
    color: #28A745;
}

.lose_score {
    font-weight: bold;
    color: #dc3545;
}

.vs {
  font-size: 1.2rem;
  font-weight: bold;
}

.matchup_avatar {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.games-list {
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 2rem auto;
}

.game-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  gap: 12px; /* spacing between elements */
}

.score {
  min-width: 40px;
  text-align: center;
}

.dash {
  min-width: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .row {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
