/* 馃寣 Chips de selecci贸n de n煤meros */
.selector-chip {
    display: inline-block;
    padding: 8px 14px;
    background: url(https://microrifa.com/wp-content/uploads/2025/08/Copilot_20250730_201236.png) center / cover no-repeat;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 6px #0038b980;
    width: 60px;
}
.selector-check:checked + .selector-chip {
  background-color: #0038b9;
  color: #FFD700;
  text-shadow: 0 0 6px #ffea00, 0 0 10px #c85eff;
  box-shadow: 0 0 10px #FFD700, 0 0 20px #c85eff;
}

/* 馃挔 Caja de resumen */
#sorteo-resumen {
  background: linear-gradient(135deg, #02133d, #0038b9);
  color: #ffffff;
  padding: 18px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  max-width: 640px;
  margin: auto;
  text-align: center;
  box-shadow: 0 0 20px #0038b950;
}

#formulario_pago_rifa {
  background: linear-gradient(135deg, #02133d, #0038b9);
  color: #ffffff;
  padding: 18px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  max-width: 640px;
  margin: auto;
 
  box-shadow: 0 0 20px #0038b950;
}

#sorteo-resumen span.chip-num {
  display: inline-block;
  margin: 6px;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(0, 56, 185, 0.6);
  color: #FFD700;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  box-shadow: 0 0 6px #FFD700, 0 0 12px #c85eff;
  animation: glowPulse 2.4s infinite;
}

/* 馃攳 Resaltado de b煤squeda */
.resaltar-busqueda {
  animation: parpadeoBrillante 1.2s ease-in-out;
  background-color: #00eaff !important;
  color: #00131a !important;
  box-shadow: 0 0 20px #00eaff;
}

/* 馃敇 Botones */
button, #limpiar_seleccion, #guardarSeleccion #boton_enviar_pago {
  background-color: #02133d;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 18px;
  border: 2px solid;
  border-image: linear-gradient(45deg, #00eaff, #ff00c8) 2;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 6px #0038b980;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #00eaff, 0 0 20px #ff00c8;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 馃専 Animaciones */
@keyframes parpadeoBrillante {
  0%   { box-shadow: 0 0 0 transparent; transform: scale(1); }
  50%  { box-shadow: 0 0 20px #00eaff; transform: scale(1.08); }
  100% { box-shadow: 0 0 0 transparent; transform: scale(1); }
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 4px #FFD700; }
  50%  { box-shadow: 0 0 12px #c85eff; }
  100% { box-shadow: 0 0 4px #FFD700; }
}

/*BOTÓN EN EL FORM PARA BORRAR*/
button.btn-eliminar-numero
 {
    display: none !important;
}

span.numero-resumen {
    margin-left: 8px;
}