
/* Custom tweaks (Tailwind is via CDN) */
html { scroll-behavior: smooth; }
a { transition: opacity .2s ease, background-color .2s ease; }
#mobileMenu.show { display: block; }

/* Make dropdown list readable in dark theme */
select option,
select optgroup {
  color: #0f172a;            /* slate-900 */
  background: #ffffff;       /* white background for the list */
}

/* Keep the closed select looking dark */
select {
  color: rgba(255,255,255,0.85);
  background-color: rgba(255,255,255,0.05);
}

/* Ensure dropdown can appear above neighbors if browser honors stacking */
select { position: relative; z-index: 50; }
