/* Vietnamese-friendly text font for the app UI */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap&subset=vietnamese');

:root {
  --app-font: 'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', 'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol', sans-serif;
}

html, body, button, input, textarea, select {
  font-family: var(--app-font);
}

/* Ensure icon fonts are not affected by the global font override */
[class^="ri-"], [class*=" ri-"], .ri { font-family: 'remixicon' !important; }

