/* ============================================================
   Material Symbols Rounded — self-hosted subset
   ------------------------------------------------------------
   Only the icons this app actually uses are included (65 glyphs,
   ~87 KB), so icons still render on a tablet or phone with flaky
   internet, and the PWA works offline.
   Icons are referenced by codepoint entity in the markup, e.g.
   <span class="material-symbols-rounded">&#xE88A;</span>
   The map of names to codepoints lives in docs/ICON-MAP.md.
   Regenerate the subset with scripts/make_icon_font.py.
   ============================================================ */

@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 100 700;
  font-display: block; /* icons must never flash as text */
  src: url('/fonts/material-symbols-rounded.woff2') format('woff2');
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded', sans-serif;
  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;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Filled variant, used for active navigation items and badges */
.material-symbols-rounded.filled {
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* WhatsApp brand glyph is not part of Material Symbols: the app
   uses an inline SVG instead (see .wa-icon in app.css). */
.wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  vertical-align: middle;
}