/* Material Symbols — FOUC / ligature text flash önleme */

.material-symbols-outlined {
    font-family: "Material Symbols Outlined", sans-serif;
    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;
    -moz-osx-font-smoothing: grayscale;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    speak: never;
    user-select: none;
    /* Ligature adı (home vb.) font gelene kadar görünmesin */
    opacity: 0;
}

html.ms-icons-ready .material-symbols-outlined {
    opacity: 1;
    transition: opacity 0.12s ease;
}

@media (prefers-reduced-motion: reduce) {
    html.ms-icons-ready .material-symbols-outlined {
        transition: none;
    }
}
