/*
 * Material Symbols (Outlined) — self-hosted (WebUI.md §3.1).
 *
 * Previously loaded from fonts.googleapis.com at runtime, which made every icon in the app depend
 * on Google being reachable from the client: a mounted tablet on a restricted network — or any
 * client the moment the WebView cache is empty (which is now every APK update, by design of
 * WebViewUpdateGuard) — degraded to raw ligature text ("menu", "logout") in place of icons.
 * The variable font (FILL, GRAD, opsz, wght axes) ships with the app instead; its defaults match
 * the instance the hosts previously requested (opsz 24, wght 400, FILL 0, GRAD 0).
 *
 * Font source: google/material-design-icons (Apache 2.0).
 */

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    font-display: block;
    src: url('../fonts/MaterialSymbolsOutlined.woff2') format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols 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;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
