/**
 * San Francisco / Apple system typography
 * Uses SF Pro on macOS, iOS, and iPadOS via -apple-system.
 * Do not embed Apple SF font files in web projects (Apple license restriction).
 */
:root {
  --app-font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --app-font-mono: "SF Mono", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html {
  font-family: var(--app-font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--app-font-family);
}

button,
input,
select,
textarea,
optgroup {
  font-family: inherit;
}

body,
.wrapper,
.main-header,
.main-sidebar,
.content-wrapper,
.right-side,
.sidebar-menu,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
label,
input,
button,
select,
textarea,
.table {
  font-family: var(--app-font-family);
}

code,
pre,
kbd,
samp {
  font-family: var(--app-font-mono);
}
