/*
 * Material Icons Round — self-hosted fallback.
 * Loaded instead of fonts.googleapis.com to avoid ERR_NAME_NOT_RESOLVED
 * in environments where Google CDN is blocked / unreachable.
 *
 * Font file: assets/fonts/MaterialIconsRound-Regular.otf
 * Ligatures are used by the <span class="material-icons-round"> pattern.
 */
@font-face {
    font-family: 'Material Icons Round';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('../fonts/MaterialIconsRound-Regular.otf') format('opentype');
}

.material-icons-round {
    font-family: 'Material Icons Round';
    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;
    text-rendering: optimizeLegibility;
}
