/* 1. Define the font face */
@font-face {
  font-display: block; /* Changed from swap to block so you don't see words while it loads */
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  /* Make sure the file names below EXACTLY match the files in your /src/fonts/ folder! */
  src: url('../fonts/material-icons-v145-latin-regular.woff2') format('woff2'), 
       url('../fonts/material-icons-v145-latin-regular.ttf') format('truetype'); 
}

/* 2. Define the core class required to render the ligatures as icons */
.material-icons {
  font-family: 'Material Icons' !important;
  font-weight: normal !important;
  font-style: normal !important;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none !important;
  letter-spacing: normal !important;
  word-wrap: normal !important;
  white-space: nowrap !important;
  direction: ltr;

  /* Force ligatures to trigger */
  font-variant: normal !important;
  font-variant-ligatures: normal !important;
  font-feature-settings: 'liga' !important;
  -webkit-font-feature-settings: 'liga' !important;

  /* Font smoothing */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
