/* =============================================================================
   Self-hosted Material icon fonts (offline)
   -----------------------------------------------------------------------------
   Replaces the Google Fonts CDN (fonts.googleapis.com / fonts.gstatic.com) so
   icons load from the app itself — no network dependency, no slow-CDN fallback.
   Served from /fonts/ (public/ folder). Files:
     • material-icons.woff2              (mat-icon default font)
     • material-symbols-outlined.woff2   (.material-symbols-outlined usages)
   ============================================================================= */

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('material-icons.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('material-symbols-outlined.woff2') format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  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-outlined {
  font-family: 'Material Symbols Outlined';
  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;
}
