/* ══════════════════════════════════════════════════════════════════════════
   MATERIAL SYMBOLS OUTLINED – Google Fonts
   Används endast på operatörssidor (control, settings, index, mobile-control).
   Aldrig på graphics.html (broadcast-säker, offline-only).

   axes-parametrar i URL:en gör typsnittet till en variabel font så vi kan
   styra fyllning (FILL), vikt (wght), gradering (GRAD) och optisk storlek
   (opsz) via font-variation-settings.
═══ */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,300..700,0..1,-50..200');

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1em;            /* Ärver storlek från parent → följer knappen */
  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;
  vertical-align: middle;
  /* Default: outline, vikt 500, lite optisk justering för UI-storlek 24. */
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
