/* styles.css - optional custom styles on top of Tailwind */
/* Keep this file minimal; Tailwind is the main styling system. */

/* Smooth scrolling for internal anchors */
html {
  scroll-behavior: smooth;
}

/* Basic scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(15, 118, 110, 0.6);
  border-radius: 999px;
}

/* Ensure body uses RTL layout, Tailwind is already aware via dir="rtl" */
body {
  direction: rtl;
}

/* Small fix so sidebar slide animation looks smooth on mobile */
#sidebar {
  will-change: transform;
}


