/* Shared icon font — Material Symbols Outlined.
   The single source of truth for WHICH glyph each icon is lives in C#
   (Nautech.Frontend.Common/Icons/IconGlyphs.cs); this file only registers the font + base class.
   The .woff2 is produced (subsetted, FILL axis kept) by
   Nautech.Frontend.Common/Assets/Fonts/produce-fonts.ps1 and copied to 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');
}

/* Applied by the <Icon> component (Layout/Elements/Icon.razor). Colour inherits currentColor by
   default; size + FILL/wght/opsz are set per element via inline font-variation-settings. */
.appicon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    display: inline-block;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
