/* =====================================================================
   Material Symbols — SELF-HOSTED for offline-first PWA
   ---------------------------------------------------------------------
   Fonts downloaded from Google Fonts (variable: opsz,wght,FILL,GRAD) and
   served locally from wwwroot/fonts/material-symbols/ so icons render even
   with no internet / blocked CDN. Do NOT re-point these at fonts.gstatic.com
   — that reintroduces the "icons show as ?" offline bug.

   Class definitions are copied verbatim from Google's css2 response; only
   the @font-face src is changed to a local url. font-display:block avoids
   a flash of the raw ligature text (e.g. "arrow_back") before the icon paints.
   ===================================================================== */

@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('../fonts/material-symbols/MaterialSymbolsRounded.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('../fonts/material-symbols/MaterialSymbolsOutlined.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Symbols Sharp';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('../fonts/material-symbols/MaterialSymbolsSharp.woff2') format('woff2');
}

.material-symbols-rounded,
.material-symbols-outlined,
.material-symbols-sharp {
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.material-symbols-rounded { font-family: 'Material Symbols Rounded'; }
.material-symbols-outlined { font-family: 'Material Symbols Outlined'; }
.material-symbols-sharp    { font-family: 'Material Symbols Sharp'; }
