/* Local self-hosted Material Icons stylesheet
   Place the font files in ../fonts/ with the exact filenames:
     - MaterialIcons-Regular.woff2
     - MaterialIcons-Regular.woff
   You can download the files from Google Fonts (fonts.gstatic.com) or obtain them
   from the Material Icons package and put them into `frontend/src/assets/fonts/`.
*/

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  /* The fetch script downloads available font files and renames them to these stable names */
  src: url('../fonts/MaterialIcons-Regular.woff2') format('woff2'),
       url('../fonts/MaterialIcons-Regular.woff') format('woff'),
       url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  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;
}

/* Optional: support for material-icons-outlined if you use it */
@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/MaterialIconsOutlined-Regular.woff2') format('woff2'),
       url('../fonts/MaterialIconsOutlined-Regular.woff') format('woff'),
       url('../fonts/MaterialIconsOutlined-Regular.otf') format('opentype');
}
.material-icons-outlined { font-family: 'Material Icons Outlined'; }
