/* Custom Hover Underline Effect */
.nav-links-wrapper a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #9333ea; /* Tailwind purple-600 */
  transition: width 0.3s ease-in-out;
}

.nav-links-wrapper a:hover::after {
  width: 100%;
}

/* Dark mode adjustment */
.dark .nav-links-wrapper a::after {
  background-color: #c084fc; /* Tailwind purple-400 */
}

/* Custom Hover Underline Effect for Desktop */
.nav-links-wrapper a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #9333ea; /* Tailwind purple-600 */
  transition: width 0.3s ease-in-out;
  border-radius: 2px;
}

.nav-links-wrapper a:hover::after {
  width: 100%;
}

/* Dark mode adjustment for the hover line */
.dark .nav-links-wrapper a::after {
  background-color: #c084fc; /* Tailwind purple-400 */
}