.rd-wheel-wrap {
  background: #fff;
}

.rd-canvas-holder {
  position: relative;
  width: min(560px, 100%);
  margin: 0 auto;
}

#wheelCanvas {
  width: 100%;
  height: auto;
  display: block;
}

/* Pointer en tono naranja */
.rd-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 26px solid #fd7e14;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  z-index: 2;
}

/* Botón Remover naranja */
.btn-remove {
  background: #fd7e14;
  border-color: #fd7e14;
  color: #fff;
  font-weight: 600;
}

.btn-remove:hover {
  background: #e96b06;
  border-color: #e96b06;
  color: #fff;
}

.btn-remove:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ✅ Winner box: borde naranja, fondo blanco, texto x2 */
.rd-winner-box {
  background: #fff;
  border: 2px solid #fd7e14;
  border-radius: 12px;
  padding: 10px 14px;
  display: inline-block;
  min-width: 160px;
}

.rd-winner-box #winnerText {
  font-size: 2rem; /* ~doble vs texto normal */
  font-weight: 800;
  color: #111;
  line-height: 1.1;
}
