/* Styles par défaut (mode clair) */
.gradient-background {
  background-image: linear-gradient(25deg, #d64c7f, #ee4758 50%);
}
.gradient-background-b {
  background-image: linear-gradient(to right, #870000, #190a05);
}
.text-highlight {
	color: #E64965;}
.sidemenu_offcanvas {
	letter-spacing: -.05rem;
}


.world_map_index {
    /* width: 100%; /* Ajustez la largeur selon vos besoins */ 
    /* height: 100px; /* Ajustez la hauteur selon vos besoins */ 
    background-image: url('../imgs/world-map.gif'); /* Remplacez par le chemin de votre image */
    /* background-size: cover; /* Ajuste l'image pour couvrir toute la zone */ 
    background-position: center;
    background-repeat: no-repeat;
    /* color: white; /* Optionnel : couleur du texte pour le contraste */ 
}

body.dark .world_map_index {
    /* width: 100%; /* Ajustez la largeur selon vos besoins */ 
    /* height: 100px; /* Ajustez la hauteur selon vos besoins */ 
    background-image: url('../imgs/world-map-dark.gif'); /* Remplacez par le chemin de votre image */
    /* background-size: cover; /* Ajuste l'image pour couvrir toute la zone */ 
    background-position: center;
    background-repeat: no-repeat;
    /* color: white; /* Optionnel : couleur du texte pour le contraste */ 
}



/* Styles pour le mode sombre */
body.dark .gradient-background {
  /* background-image: linear-gradient(25deg, #4a2a50, #723c4a 50%); */
  background-image: linear-gradient(to right, #141e30, #243b55);
}



    /* Supprime l'effet de hover en désactivant les changements (btn chgmt langue) */
    #dropdownMenuButton.btn-outline-light:hover {
        background-color: transparent; /* Pas de fond au hover */
        color: inherit; /* Conserve la couleur d'origine */
        border-color: inherit; /* Conserve le contour d'origine */
    }
    /* Désactive le fond au clic (état actif) */
    #dropdownMenuButton.btn-outline-light:active,
    #dropdownMenuButton.btn-outline-light.active,
    #dropdownMenuButton.btn-outline-light:focus {
        background-color: transparent; /* Pas de fond après clic */
        color: inherit;
        border-color: inherit;
        box-shadow: none; /* Enlève le contour par défaut */
    }	