
/* Minimal additions on top of Tailwind for RTL niceties */
:root { --sidebar-width: 280px; }
html[dir="rtl"] .rtl-dir { direction: rtl; }
.scrollbar-thin::-webkit-scrollbar { height: 6px; width: 6px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: #b0b0b0; border-radius: 9999px; }
.container-fixed { max-width: 1280px; margin-inline: auto; }
.link-active { background-color: rgba(59,130,246,0.12); color: rgb(37 99 235); }
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display:none; }
.modal { display:none; }
.modal.show, .modal-backdrop.show { display:block; }
@media (min-width: 1024px) {
  .sidebar { inset-inline-start: 0; }
}
