#ygb-selector-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
#ygb-selector-popup-content {
  background: var(--ygb-bg, #fff);
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  color: var(--ygb-text, #333);
}
#ygb-selector-popup-content h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--ygb-title, #E26143);
  font-weight: 700;
}
#ygb-selector-menu {
  width: 100%;
  font-size: 18px;
  min-height: 48px;
  padding: 6px 12px;
  border: 2px solid var(--ygb-accent, #0073aa);
  border-radius: 12px;
  background: var(--ygb-bg, #fff);
  color: var(--ygb-text, #333);
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
}
#ygb-selector-redirect-msg {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  display: none;
}

/* ESTILOS AÑADIDOS PARA FEEDBACK */
#ygb-selector-menu:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

#ygb-selector-redirect-msg.ygb-error {
  color: #dc3232;
  font-weight: 600;
}

/* Para alta accesibilidad */
@media (prefers-reduced-motion: reduce) {
  #ygb-selector-popup {
    animation: none;
  }
}

/* Responsive adicional */
@media (max-width: 480px) {
  #ygb-selector-popup-content {
    padding: 15px;
    width: 95%;
  }
  
  #ygb-selector-menu {
    font-size: 16px;
    min-height: 44px;
  }
}