/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Ensure images do not overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Mobile menu transition helper */
#mobile-menu {
  transition: all 0.2s ease-in-out;
}

/* Focus visible outline for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

/* Optional: custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
