/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  /* Was `block` — that gives the icon font up to 3s of invisible
   * text before falling back, contributing to the 300ms font-
   * display penalty Lighthouse flagged. `swap` shows fallback text
   * immediately and swaps in the icon font when it arrives — for
   * Material icons the brief tofu is preferable to invisible chrome
   * on slow networks. */
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.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 Icons Outlined ─────────────────────────────────────
 * Outlined variant of Material Icons. Same icon ligature names as
 * the filled font (`folder`, `group`, `verified`, …) but rendered
 * with thin strokes instead of solid fills.
 *
 * Why we ship both:
 *   - The sidebar uses custom outlined SVGs for Home / Documents /
 *     Templates / Settings. The Material-icon nav entries (Files,
 *     Team, Verify) need to MATCH that thin-stroke aesthetic
 *     instead of rendering as heavy filled shapes — without this
 *     font, those three icons read as visually heavier than their
 *     SVG neighbours.
 *   - One additional woff2 (~25 KB compressed) is a cheap fix vs
 *     swapping each Material icon name to its closest outlined-by-
 *     default cousin (which doesn't exist for every shape).
 *
 * Apply via the `.material-icons-outlined` class on a <mat-icon>;
 * the icon ligature name itself doesn't change.
 */
@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUce.woff2) format('woff2');
}

.material-icons-outlined {
  font-family: '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';
  -webkit-font-smoothing: antialiased;
}
