/* Highlight the active language */
.lang-btn.font-bold.underline {
  color: #2563eb; /* Tailwind blue-600 for light mode */
  text-decoration-thickness: 2px;
}

.dark .lang-btn.font-bold.underline {
  color: #38bdf8; /* Tailwind sky-400 for dark mode */
}

.active-lang {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}