/* FontAwesome Icons - Minimal version */
/* Suppression de la police corrompue, utilisation des SVG uniquement */

.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
}

/* Suppression des doublons FontAwesome - utilisation des SVG uniquement */

/* Fallback pour les icônes si FontAwesome ne charge pas */
.fa-moon {
    background-image: url("./moon white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.fa-sun {
    background-image: url("./sun white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    display: inline-block;
} 