/*
 * Self-hosted Material Icons (Regular).
 *
 * Replaces the previous https://fonts.googleapis.com/icon?family=Material+Icons
 * dependency so the plugin no longer relies on a third-party CDN (which could not be
 * SRI-protected because Google Fonts serves per-browser CSS).
 *
 * Font files in assets/fonts/:
 *   MaterialIcons-Regular.woff2  (gstatic v145 - primary, ~97% of browsers)
 *   MaterialIcons-Regular.ttf    (fallback for the rest)
 *
 * The .material-icons rule below is copied verbatim from the CSS Google Fonts served,
 * so existing class="material-icons" markup and ligature usage work unchanged. Icons
 * confirmed present: show_chart, area_chart, candlestick_chart, settings, filter_list.
 */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/MaterialIcons-Regular.woff2') format('woff2'),
       url('fonts/MaterialIcons-Regular.ttf') format('truetype');
}

.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;
}
