/* Only what Tailwind utilities cannot express: the Arabic font stack and scrollbar polish.
   Everything else stays as utility classes in the markup. */
html {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  scroll-behavior: smooth;
}

/* Numbers and Latin identifiers stay LTR inside the RTL shell. */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}

code,
pre {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}

[data-assistant-log]::-webkit-scrollbar {
  width: 6px;
}
[data-assistant-log]::-webkit-scrollbar-thumb {
  background: #d6d3d1;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
