/* Remix Icon (iconify-icons.css) base rule —
   Kaynak CSS'de yalnızca `.ri` class'ı styling alıyor, ama tüm view'larda
   <i class="ri-xxx"></i> şeklinde kullanılıyor. Bu kural eksik base styling'i tamamlar. */
i[class^="ri-"],
i[class*=" ri-"],
span[class^="ri-"],
span[class*=" ri-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

/* Boyut yardımcı sınıfları */
i.ri-2x, span.ri-2x { font-size: 2em; }
i.ri-3x, span.ri-3x { font-size: 3em; }
i.ri-4x, span.ri-4x { font-size: 4em; }
i.ri-5x, span.ri-5x { font-size: 5em; }
