/* SamVertex design system
 * ============================================================================
 * Single source of truth for design tokens shared across every non-embedded
 * surface (app, merchant, merchant-login, dispatch, driver, admin-login).
 * merchant-embedded.html is intentionally excluded: it runs inside the Shopify
 * Admin frame and uses Polaris/Inter, with brand-color overrides explicitly
 * forbidden by BFS 4.1.1.
 *
 * Naming conventions mirror samvertex-web (the canonical brand reference at
 * https://samvertex.com). Where samvertex-web has a token for a given
 * semantic role we adopt the name and value; where it doesn't (e.g. semantic
 * success/danger/warning/info because samvertex-web is a marketing site, not
 * an operational console), we add tokens with names that follow the same
 * conventions.
 *
 * Reconciliation notes:
 *   - Color: brand orange (--color-orange, --color-orange-darker, etc.)
 *     mirrors samvertex-web exactly. Hover orange is --color-orange-darker
 *     (#C2410C), the AAA-compliant pair when used with white text.
 *   - Color: surfaces use samvertex-web's cream/paper naming (--color-cream,
 *     --color-paper) but keep fulfillment-api's hex values (#faf8f5, #ffffff)
 *     to preserve visual parity. samvertex-web uses #faf6f0 / #fdfcfa which
 *     are <2% different perceptually.
 *   - Color: text uses samvertex-web's ink naming (--color-ink, --color-ink-muted,
 *     --color-ink-soft) with fulfillment-api's hex values (slightly warmer
 *     by 1-3 units per channel).
 *   - Color: borders use --color-border / --color-border-strong with opaque
 *     cream-tinted values. samvertex-web uses translucent --hairline tokens
 *     (#1c191714, ~8% black on cream) which alpha-blend to a similar
 *     #e8e6e3 ≈ #e8e1d8. Kept opaque for predictability across operator-tool
 *     surfaces that may not always render on cream.
 *   - Spacing/radius/shadow scales: samvertex-web uses Tailwind v4's
 *     --spacing: .25rem multiplier system. fulfillment-api doesn't use
 *     Tailwind, so we expose a Tailwind-compatible numeric scale where each
 *     step represents the same value (--space-1 = 4px = 1 * 0.25rem,
 *     --space-2 = 8px, --space-3 = 12px, etc.). Half-steps use underscore
 *     (--space-1_5 = 6px). This lets future contributors who know Tailwind
 *     read the scale without translation.
 *   - Type scale extends beyond samvertex-web's marketing scale to include
 *     denser operator-tool sizes (10/11/12/13/14/15px). The 13px base
 *     reflects fulfillment-api's operational density.
 * ============================================================================
 */

:root {
  /* ── Color: brand orange ── */
  --color-orange: #F97316;
  --color-orange-dark: #EA580C;
  --color-orange-darker: #C2410C;
  --color-orange-light: #FDBA74;
  --color-orange-soft: #FFF4EC;
  --color-orange-warm: #FFEDDA;
  --color-orange-tint: rgba(249, 115, 22, 0.12);
  --color-orange-edge: rgba(249, 115, 22, 0.25);

  /* ── Color: WhatsApp ── */
  --color-whatsapp: #25D366;

  /* ── Color: neutral surfaces ── */
  --color-cream: #FAF8F5;
  --color-paper: #FFFFFF;
  --color-cream-2: #F5F4F0;
  --color-cream-3: #ECE9E3;
  --color-cream-4: #E8E1D8;
  --color-near-black: #0A0A0A;
  --color-white: #FFFFFF;              /* theme-invariant; pair with --color-near-black for button text contrast on orange */

  /* ── Color: ink (text) ── */
  --color-ink: #1A1816;
  --color-ink-muted: #4A4540;
  --color-ink-medium: #6B6258;          /* marketing tertiary text (between -muted and -soft) */
  --color-ink-soft: #9B9489;

  /* ── Color: borders ── */
  --color-border: #E8E1D8;
  --color-border-strong: #D3CBBF;
  --color-border-overlay: rgba(0, 0, 0, 0.25);

  /* ── Color: scrim overlays for modals/drawers (theme-invariant) ── */
  --color-overlay-light: rgba(0, 0, 0, 0.4);
  --color-overlay: rgba(0, 0, 0, 0.5);

  /* ── Color: decorative dot-grid background ── */
  --color-dotgrid: var(--color-border-strong);

  /* ── Color: semantic operational ── */
  --color-success: #15803D;
  --color-success-soft: #DCFCE7;
  --color-success-edge: rgba(21, 128, 61, 0.2);
  --color-danger: #DC2626;
  --color-danger-soft: rgba(220, 38, 38, 0.08);
  --color-danger-edge: rgba(220, 38, 38, 0.2);
  --color-warning: #A16207;
  --color-warning-soft: #FEF9C3;
  --color-warning-edge: rgba(245, 200, 66, 0.1);
  --color-info: #1D4ED8;
  --color-info-soft: #DBEAFE;
  --color-info-edge: rgba(91, 163, 245, 0.1);
  --color-pink: #9D174D;
  --color-pink-soft: #FCE7F3;

  /* Muted/cancelled badge backdrop. Light = solid cream tone, dark = translucent
     mid-gray so badges still read as muted against the dark canvas. */
  --color-mute-soft: var(--color-cream-3);

  /* ── Color: shadow alphas (raw, used by --shadow-* tokens) ── */
  --color-shadow-04: rgba(0, 0, 0, 0.04);
  --color-shadow-05: rgba(0, 0, 0, 0.05);
  --color-shadow-08: rgba(0, 0, 0, 0.08);
  --color-shadow-12: rgba(0, 0, 0, 0.12);
  --color-shadow-15: rgba(0, 0, 0, 0.15);

  /* ── Type: families ── */
  --font-body: 'Poppins', 'Open Sans', system-ui, sans-serif;
  --font-display: 'Open Sans', 'Poppins', system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

  /* ── Type: size scale (px values, pair with --leading-* for line-height) ── */
  --text-3xs: 9px;
  --text-2xs: 10px;
  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;   /* operational default */
  --text-md: 14px;
  --text-lg: 15px;
  --text-xl: 18px;
  --text-2xl: 22px;
  --text-3xl: 24px;
  --text-4xl: 28px;
  --text-5xl: 36px;
  --text-6xl: 52px;                    /* marketing display: stat-band big number */

  /* ── Type: display sizes (responsive clamp(), marketing surfaces only) ── */
  --text-display-sm: clamp(26px, 3.2vw, 42px);   /* shared section h2 */
  --text-display-md: clamp(28px, 4vw, 50px);     /* cta-band heading */
  --text-display-lg: clamp(36px, 4.2vw, 58px);   /* hero h1 */

  /* ── Type: leading (line-height) scale, paired with --text-* by suffix ── */
  --leading-2xs: 14px;
  --leading-xs: 14px;
  --leading-sm: 16px;
  --leading-base: 18px;
  --leading-md: 20px;
  --leading-lg: 22px;
  --leading-xl: 24px;
  --leading-2xl: 28px;
  --leading-3xl: 30px;
  --leading-4xl: 34px;
  --leading-5xl: 40px;

  /* ── Spacing scale (Tailwind v4 compatible: each step = N * 4px;
     half-steps and quarter-steps fill the operator-tool density gaps merchant.html
     and dispatch.html actually use, e.g. 3px borders, 5px badge padding, 9px input
     padding, 13px submit-button padding) ── */
  --space-0: 0;
  --space-px: 1px;
  --space-0_5: 2px;
  --space-0_75: 3px;
  --space-1: 4px;
  --space-1_25: 5px;
  --space-1_5: 6px;
  --space-1_75: 7px;
  --space-2: 8px;
  --space-2_25: 9px;
  --space-2_5: 10px;
  --space-2_75: 11px;
  --space-3: 12px;
  --space-3_25: 13px;
  --space-3_5: 14px;
  --space-3_75: 15px;
  --space-4: 16px;
  --space-4_25: 17px;
  --space-4_5: 18px;
  --space-5: 20px;
  --space-5_5: 22px;
  --space-6: 24px;
  --space-6_5: 26px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-13: 52px;
  --space-14: 56px;
  --space-15: 60px;
  --space-16: 64px;
  --space-17: 68px;
  --space-18: 72px;
  --space-20: 80px;
  --space-22: 88px;
  --space-24: 96px;
  --space-25: 100px;
  --space-27: 108px;

  /* ── Radius scale ── */
  --radius-2xs: 2px;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-2xl: 14px;
  --radius-3xl: 16px;
  --radius-4xl: 20px;
  --radius-pill: 9999px;
  --radius-circle: 50%;

  /* ── Shadow scale ── */
  --shadow-xs: 0 1px 4px var(--color-shadow-04);
  --shadow-sm: 0 2px 8px var(--color-shadow-05);
  --shadow-md: 0 4px 20px var(--color-shadow-12);
  --shadow-lg: 0 20px 60px var(--color-shadow-15);
  --shadow-drawer: -8px 0 32px var(--color-shadow-08);
  --shadow-sidebar: 2px 0 8px var(--color-shadow-04);
  --shadow-orange-sm: 0 4px 14px rgba(249, 115, 22, 0.24);
  --shadow-orange-md: 0 6px 20px rgba(249, 115, 22, 0.28);
  --shadow-orange-lg: 0 12px 36px rgba(249, 115, 22, 0.35);
  --shadow-focus-orange: 0 0 0 3px rgba(249, 115, 22, 0.12);
  --shadow-whatsapp: 0 6px 24px rgba(37, 211, 102, 0.45);
  --shadow-whatsapp-hover: 0 10px 32px rgba(37, 211, 102, 0.55);

  /* ── Motion ── */
  --motion-snap: 100ms ease;           /* row-hover bg flashes */
  --motion-fast: 120ms ease;           /* dense list hovers */
  --motion-base: 150ms ease;           /* samvertex-web default; input focus, badge transitions */
  --motion-slow: 200ms ease;           /* button hovers, toggle slide */
  --motion-slower: 250ms cubic-bezier(0.4, 0, 0.2, 1);  /* drawer/sidebar slide */
  --motion-slowest: 300ms ease;        /* one-off fade-ins (e.g. setting-saved confirmation) */
  --motion-bounce: 200ms cubic-bezier(0.34, 1.56, 0.64, 1);  /* toast appear */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* ── Layout ── */
  --sidebar-width: 220px;
  --sidebar-width-collapsed: 64px;
  --topbar-height: 56px;
  --sidebar-width-dense: 200px;        /* dispatch.html operator console */
  --sidebar-width-collapsed-dense: 52px;
  --topbar-height-dense: 48px;

}

html.dark {
  /* ── Surface inversion ── */
  --color-cream: #080808;
  --color-paper: #0F0F0F;
  --color-cream-2: #161616;
  --color-cream-3: #1E1E1E;
  --color-cream-4: #282828;

  /* ── Ink inversion ── */
  --color-ink: #F2F0EB;
  --color-ink-muted: #B0ADA8;
  --color-ink-medium: #8B8884;
  --color-ink-soft: #666360;

  /* ── Border inversion ── */
  --color-border: rgba(255, 255, 255, 0.07);
  --color-border-strong: rgba(255, 255, 255, 0.13);
  --color-border-overlay: rgba(255, 255, 255, 0.22);

  /* ── Semantic colors brighten for dark backgrounds ── */
  --color-success: #52D186;
  --color-success-soft: rgba(82, 209, 134, 0.1);
  --color-success-edge: rgba(82, 209, 134, 0.2);
  --color-danger: #F56B6B;
  --color-danger-soft: rgba(245, 107, 107, 0.1);
  --color-danger-edge: rgba(245, 107, 107, 0.2);
  --color-warning: #F5C842;
  --color-warning-soft: rgba(245, 200, 66, 0.1);
  --color-info: #5BA3F5;
  --color-info-soft: rgba(91, 163, 245, 0.1);

  /* Cancelled/muted badge tint stays translucent in dark mode. */
  --color-mute-soft: rgba(100, 99, 96, 0.15);

  /* Dot-grid background brightens slightly under dark theme. */
  --color-dotgrid: rgba(255, 255, 255, 0.08);

  /* Brand orange tokens stay constant across themes by design. */
}

/* ============================================================================
 * Components
 * ----------------------------------------------------------------------------
 * Canonical component classes consumed by merchant.html and dispatch.html.
 * Visual styling (background, borders, item layout, hover/active states,
 * transitions, label-hide-when-collapsed) is defined here. Position and
 * geometry (position:fixed vs flex-child, top/left/right offsets, z-index)
 * remain surface-specific because merchant and dispatch have legitimately
 * different topology: merchant has a full-height sidebar with the topbar
 * offset to its right; dispatch has a full-width topbar with the sidebar
 * starting beneath it inside .app-body. Forcing topology parity is out of
 * scope for D.4 (would require moving dispatch's brand mark out of the
 * topbar and into the sidebar, restructuring the body layout, and animating
 * the topbar's left edge on collapse-toggle — three independent regression
 * surfaces). Surface-specific position rules live in each surface's local
 * <style> block.
 *
 * Lesson from D.2 → D.3: when a motion token already bundles a timing
 * function (e.g. --motion-slower expands to "250ms cubic-bezier(...)"), do
 * NOT pair it with another timing-function in the same transition shorthand
 * — the result is invalid CSS and the entire declaration is dropped on
 * parse, which silently breaks the animation while leaving resting state
 * intact. Every transition declaration below is audited: it is either a
 * single bundled token (var(--motion-base) etc.) or an explicit duration +
 * timing-function pair (0.2s var(--ease-in-out)), never a mix.
 * ============================================================================
 */

/* ── Components: Sidebar ── */
.sidebar{
  width:var(--sidebar-width);
  background:var(--color-paper);
  border-right:1px solid var(--color-border);
  box-shadow:var(--shadow-sidebar);
  display:flex;flex-direction:column;
  overflow:hidden;flex-shrink:0;
  transition:width 0.2s var(--ease-in-out);
}
.sidebar.is-collapsed{
  width:var(--sidebar-width-collapsed);
}

.sidebar-brand{
  padding:var(--space-4_5) var(--space-4_5) var(--space-3_5);
  border-bottom:1px solid var(--color-border);
  flex-shrink:0;
}
.sidebar.is-collapsed .sidebar-brand{
  padding:var(--space-3) 0;
  display:flex;align-items:center;justify-content:center;
}

.sidebar-nav{
  flex:1;
  padding:var(--space-2_5);
  display:flex;flex-direction:column;gap:var(--space-0_5);
  overflow-y:auto;overflow-x:hidden;
}
.sidebar.is-collapsed .sidebar-nav{
  padding:var(--space-2);
  align-items:center;
}

.sidebar-item{
  display:flex;align-items:center;gap:var(--space-2_5);
  padding:var(--space-2_5) var(--space-4);
  border-radius:var(--radius-md);
  font-family:var(--font-body);font-weight:500;font-size:var(--text-base);
  color:var(--color-ink-muted);
  cursor:pointer;border:none;background:none;
  width:100%;text-align:left;
  border-left:3px solid transparent;
  transition:background var(--motion-base),color var(--motion-base);
  position:relative;
}
.sidebar-item:hover{
  color:var(--color-orange);
  background:var(--color-orange-soft);
}
.sidebar-item.is-active{
  color:var(--color-orange);
  background:var(--color-orange-soft);
  border-left-color:var(--color-orange);
  font-weight:600;
}
html.dark .sidebar-item:hover,
html.dark .sidebar-item.is-active{
  background:var(--color-orange-tint);
}
.sidebar.is-collapsed .sidebar-item{
  width:36px;height:36px;padding:0;
  justify-content:center;
  border-left:none;
}

.sidebar-item-icon{
  width:16px;height:16px;flex-shrink:0;
  opacity:.5;
  transition:opacity var(--motion-base);
}
.sidebar-item:hover .sidebar-item-icon,
.sidebar-item.is-active .sidebar-item-icon{
  opacity:1;
}

.sidebar-item-label{
  flex:1;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.sidebar.is-collapsed .sidebar-item-label{
  display:none;
}

.sidebar-item-badge{
  margin-left:auto;flex-shrink:0;
  min-width:16px;height:16px;
  padding:0 var(--space-1);
  background:var(--color-orange);color:var(--color-cream);
  font-family:var(--font-body);font-size:var(--text-xs);font-weight:700;
  border-radius:var(--radius-circle);
  display:inline-grid;place-items:center;
}
.sidebar.is-collapsed .sidebar-item-badge{
  position:absolute;top:2px;right:2px;
  margin-left:0;
  width:14px;min-width:14px;height:14px;
  padding:0;
}

.sidebar-item-tooltip{
  position:absolute;left:calc(100% + 10px);top:50%;
  transform:translateY(-50%);
  background:var(--color-cream-3);
  border:1px solid var(--color-border-strong);
  color:var(--color-ink);
  font-family:var(--font-body);font-weight:600;font-size:var(--text-base);
  padding:var(--space-1) var(--space-2_5);
  border-radius:var(--radius-sm);
  white-space:nowrap;letter-spacing:.5px;
  pointer-events:none;
  opacity:0;
  transition:opacity var(--motion-snap);
  z-index:999;
}
.sidebar.is-collapsed .sidebar-item:hover .sidebar-item-tooltip{
  opacity:1;
}
.sidebar:not(.is-collapsed) .sidebar-item-tooltip{
  display:none;
}

.sidebar-divider{
  height:1px;
  background:var(--color-border);
  margin:var(--space-1) var(--space-3_5);
  flex-shrink:0;
}
.sidebar.is-collapsed .sidebar-divider{
  width:20px;
  margin:var(--space-1) auto;
}

.sidebar-footer{
  padding:var(--space-3);
  border-top:1px solid var(--color-border);
  display:flex;flex-direction:column;gap:var(--space-2);
  flex-shrink:0;
}
.sidebar.is-collapsed .sidebar-footer{
  padding:var(--space-2);
  align-items:center;
}

/* ── Components: Topbar ── */
.topbar{
  height:var(--topbar-height);
  background:var(--color-paper);
  border-bottom:1px solid var(--color-border);
  box-shadow:var(--shadow-xs);
  display:flex;align-items:center;
  flex-shrink:0;
}
.topbar-title{
  font-family:var(--font-display);font-weight:700;font-size:var(--text-xl);
  color:var(--color-ink);
}
.topbar-search{
  flex:1;position:relative;
  max-width:360px;
}
.topbar-actions{
  margin-left:auto;
  display:flex;align-items:center;gap:var(--space-3);
}

/* ============================================================================
 * Self-hosted webfonts. Mirrors samvertex-web's @fontsource setup. Files in
 * /fonts/ are byte-identical to samvertex.com's /fonts/ (verified by SHA-256
 * during Batch Prep B). Latin + latin-ext subsets only; no Cyrillic-ext or
 * Tajawal because fulfillment-api surfaces are English-only and admin-facing.
 * ============================================================================
 */

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/open-sans-latin-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/open-sans-latin-ext-700-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/open-sans-latin-800-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/open-sans-latin-ext-800-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-latin-ext-400-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/poppins-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/poppins-latin-ext-500-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/poppins-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/poppins-latin-ext-600-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
