﻿@charset "utf-8";

/* ======================================================= */
/* Regole base per tutti gli stili e prevenzione selezione */
/* ======================================================= */

.material-symbols-outlined,
.material-symbols-rounded,
.material-symbols-sharp,
.material-symbols-filled /* Includiamo anche la classe helper nel blocco base */ {
    /* Impostazioni Base: Outlined (FILL 0), Peso Normale (400) */
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0;
    /* Prevenzione Interazione */
    user-select: none !important;
    /* Ottimizzazione del Rendering */
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

/* ================== */
/* Regole di Override */
/* ================== */

/* Stile FILLED (Riempito) */
.material-symbols-filled {
    /* Sovrascrive solo FILL 0 con FILL 1 */
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0;
}

/* Stile BOLD */
.material-symbols-bold {
    /* Sovrascrive solo wght 400 con wght 700 */
    font-variation-settings: 'wght' 700;
}
