/*
 * Self-hosted Material Symbols (replaces external Google Fonts links).
 * Subsetted to the icons actually used across the app. If you add a NEW icon
 * (a new ligature name in a `material-symbols-*` span), it MUST be added to the
 * subset and the woff2 regenerated, otherwise it renders as plain text.
 *
 * Icons currently included:
 *   account_circle, add, arrow_back_ios, arrow_drop_down, call, delete,
 *   download, error_outline, expand_less, expand_more,
 *   keyboard_arrow_down, keyboard_arrow_up, menu, print
 *
 * Regenerate (fetch a fresh subset from Google with a browser User-Agent):
 *   https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=<comma,separated,icons>
 *   https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=<comma,separated,icons>
 * then download the .woff2 each @font-face points to and overwrite the files in wwwroot/fonts/.
 */

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

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

.material-symbols-outlined,
.material-symbols-rounded {
    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-symbols-outlined {
    font-family: 'Material Symbols Outlined';
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
}
