/*
 * Self-hosted Material Icons fonts.
 *
 * The app renders icons through MUI's font-ligature <Icon> component and the
 * `.material-icons` / `.material-icons-outlined` classes. Previously these
 * were served from the Google Fonts CDN, so on any network that can't reach
 * fonts.gstatic.com every icon fell back to its ligature text (e.g. "add",
 * "chevron_left"). Vendoring the fonts makes icons render offline, and
 * `font-display: block` avoids a flash of ligature text while the font loads.
 */

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('material-icons/material-icons.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('material-icons/material-icons-outlined.woff2') format('woff2');
}

.material-icons,
.material-icons-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';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.material-icons {
  font-family: 'Material Icons';
}

.material-icons-outlined {
  font-family: 'Material Icons Outlined';
}
