/* 本地图标字体 — 不依赖 Google Fonts，避免国内加载慢/露出文字名 */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/material-icons.woff2") format("woff2");
}

.material-symbols-outlined,
.material-icons {
  font-family: "Material Icons", sans-serif;
  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-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
  /* 字体未就绪时隐藏连字文本，避免出现 chevron_right 字样 */
  opacity: 0;
  transition: opacity 0.12s ease;
}

html.icons-ready .material-symbols-outlined,
html.icons-ready .material-icons,
.material-symbols-outlined.icons-force,
.material-icons.icons-force {
  opacity: 1;
}
