ul.select2-results__options li.select2-results__option a {
    color: #000 !important; /* Dark black color */
}

/* Neon Text Styles */
.neon-text {
  font-size: 48px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  color: pink; /* Neon green color */
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
  animation: neon 1s ease-in-out infinite alternate;
}

/* Neon Animation */
@keyframes neon {
  0% {
    color: purple; /* Neon green color */
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
  }
  100% {
    color: green; /* Lighter neon green color */
    text-shadow: 0 0 20px #33ff33, 0 0 30px #33ff33, 0 0 40px #33ff33;
  }
}
