.game-settings {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.setting-item {
  background: #fdf3f3;
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.setting-item input[type="number"] {
  width: 70px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.team-tag.red {
  color: #d62828;
}

.team-tag.blue {
  color: #1d4ed8;
}

.team-tag.green {
  color: #16a34a;
}

.team-tag.yellow {
  color: #ca8a04;
}

.team-tag.purple {
  color: #7c3aed;
}

.team-tag.orange {
  color: #ea580c;
}
