#horseSelector {
  background: #222;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
  width: 250px;
}
.horseOption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid #555;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.horseOption:last-child { margin-bottom: 0; }
.horseOption .swatch {
  width: 20px;
  height: 20px;
  border: 1px solid #333;
}
.horseOption.selected {
  background: #444;
  border-color: gold;
}
.horseOption:hover {
  background: #333;
}
#raceButton {
  padding: 12px 24px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  background-color: #ff9900;
  color: black;
  cursor: pointer;
  box-shadow: 0 0 10px #ff9900, 0 0 20px #ff6600;
  transition: all 0.3s ease;
  width: 100%;
}
#raceButton:disabled {
  background-color: #663300;
  box-shadow: none;
  color: #aaa;
}

#scaleContainer {
  position: relative;
}

.horseSprite {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}
