/* Ocultar la flecha nativa del select en todos los navegadores CYBERPUNK - Fondo blanco */
.select-custom select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: rgba(255, 255, 255, 0.9) !important;
  background-image: none !important;
  color: #0041C2 !important;
}
/* Flecha personalizada restaurada CYBERPUNK */
.select-custom::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-right: 2.5px solid #00D4FF !important;
  border-bottom: 2.5px solid #00D4FF !important;
  transform: translateY(-45%) rotate(45deg);
  background: transparent;
  z-index: 2;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.6));
}
/* Estilo profesional para el menú desplegable (select) */
.select-custom {
  position: relative;
  width: 100%;
}
.select-custom select {
  width: 100%;
  padding: 12px 38px 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 65, 194, 0.2) !important;
  background: rgba(248, 251, 255, 0.95) !important;
  font-size: 17px;
  font-family: 'Segoe UI', 'Segoe UI Symbol' !important;
  color: #0041C2 !important;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  line-height: 1.3;
}
.select-custom select:focus {
  border-color: #00D4FF !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
/* Opciones del menú desplegable CYBERPUNK - Fondo blanco suave */
select option {
  background: rgba(248, 251, 255, 0.98) !important;
  color: #0041C2 !important;
  font-size: 16px;
  font-family: 'Segoe UI', 'Segoe UI Symbol' !important;
  padding: 10px 16px;
}
select option:checked, select option:focus {
  background: rgba(0, 212, 255, 0.15) !important;
  color: #0041C2 !important;
}

