.match-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
}

.match-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pick-btn {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
  background: var(--bg);
  color: var(--fg);
  font-weight: 500;
}

.pick-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pick-btn.selected {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.pick-btn.team-btn {
  position: relative;
  overflow: hidden;
}

.pick-btn.team-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  z-index: 0;
}

.pick-btn .logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  z-index: 1;
}

.pick-btn .team-name {
  z-index: 1;
}

.draw-btn {
  background: var(--bg);
  color: var(--fg);
  min-width: 80px;
}

.draw-btn:hover {
  color: var(--fg);
}

.draw-btn.selected {
  outline-color: #666;
}

.multiplier {
  font-size: 0.875rem;
  color: var(--muted);
  margin-left: auto;
  padding: 0.25rem 0.5rem;
  background: var(--bg-alt);
  border-radius: 4px;
}

#output {
  font-family: monospace;
  white-space: pre-wrap;
  background: var(--bg);
}

.section-title {
  margin-bottom: 0.5rem;
}

.paste-section {
  margin-bottom: 1rem;
}

.teams-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
