/**
 * Tailwind-equivalent typography for backend (admin + seller).
 * Uses html.* body so it overrides public/backend/css/style.css body { font-family: ... }.
 */
html.font-sans body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}

html.antialiased body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
