/* Language dropdown fix for profile page */

/* Reset any possible styling that might be affecting the select */
.profile-form select,
#user_language_preference {
  /* Force browser native dropdown */
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;

  /* Ensure proper display */
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 38px !important;

  /* Clean styling */
  border: 1px solid #9ca3af !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  background-color: #fff !important;
  font-size: 16px !important;
  color: #333 !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Fix for mobile select options positioning */
body .profile-form {
  position: relative !important;
}

/* Remove any yellow/orange outline */
.profile-form select:focus,
#user_language_preference:focus {
  outline: none !important;
  border-color: #9ca3af !important;
  box-shadow: 0 0 0 1px #9ca3af !important;
}

/* Override any styles from other libraries */
.profile-form .select-container,
.profile-form .select-dropdown {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
