 .custom-cluster-icon {
     text-align: center;
     line-height: 40px;
     /* /* Ajustez en fonction de la taille de l'icône du cluster */
    color: #fff;
     /* Couleur du texte dans l'icône du cluster */
     font-weight: bold;
     background-color: #198754;
     /* Couleur de fond de l'icône du cluster */
     border-radius: 50%;
     /* Bordure arrondie pour un aspect de cercle */
  } 
 .custom-margin {
     margin-left: 25%;
     /* !important est utilisé pour s'assurer que cette règle a la priorité */
 }

 /* Ajoutez ces règles à votre fichier CSS */
 #overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0);
     pointer-events: none;
     z-index: 1040;
 }

 .overlay-show {
     background: rgba(0, 0, 0, 0);
     /* Réglage de l'assombrissement pendant l'affichage de l'Offcanvas */
 }

body {
    padding: 0;
    margin: 0;
}

html,
body,
#map {
    height: 100%;
    font: 10pt "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.lorem {
    font-style: italic;
    color: #AAA;
}

.offcanvas {
    margin-left: 34%;
    width: 75%;
    height: 98%;
    margin-top: 1.5%;
}

.bxl-graphqle {
    font-size: inherit;
    font-family: inherit;
    font-weight: bolder;
    text-decoration: none;
    font-size: 12px;
    color: #353434;
    padding: 2%;
    width: 97%;
    ;
    padding-bottom: 1%;
}

.bxl-graphqle:hover {
    text-decoration: none;
}

.block-btn {
    display: flex;
    text-align: right;
}

.badge {
    font-size: 13px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.badge-secondary {
    font-size: 8px;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: #8a90a1;
}

.innovation-link {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    /* Couleur du texte */
    border: 1px solid #ccc;
    /* Bordure légère */
    border-radius: 5px;
    /* Coins arrondis */
    margin-bottom: 5px;
    /* Marge en bas pour l'espace entre les liens */
    cursor: pointer;
    /* Changement du curseur au survol du lien */
}

.innovation-link:hover {
    background-color: #198754;
    color: white;
    /* Couleur de fond au survol du lien */
}

.innovation-title {
    font-weight: bold;
    /* Texte en gras */
}

.btn:hover {
    background-color: #198754;
    color: white;
}

.list-styled {
    background-color: #0074d9;
    color: #ffffff;
    padding: 10px;
}

/* Ajouter du style au sidebar */

.category-container {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.category-button {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.category-button:hover {
    transform: scale(1.05);
}

.collapse-horizontal {
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Définir une classe commune pour les boutons */
.button {
    display: flex;
    /* Permettre de changer la largeur et la hauteur */
    padding: 8px 15px;
    /* Ajouter de l'espace autour du texte */
    font-size: 15px;
    /* Changer la taille du texte */
    border: none;
    /* Enlever la bordure par défaut */
    border-radius: 4px;
    /* Arrondir les coins */
    cursor: pointer;
    /* Afficher une main au survol */
    margin-bottom: 5%;
}

/* Définir des couleurs différentes pour chaque bouton */
.btn-warning {
    background-color: #f0ad4e;
    /* Orange */
    color: white;
    /* Texte blanc */
}

.btn-primary {
    background-color: #337ab7;
    /* Bleu */
    color: white;
    /* Texte blanc */
}

/* Ajouter un effet de transition au changement de couleur */
.button:hover {
    transition-duration: 0.4s;
    /* Durée de l'effet */
}

/* Changer la couleur de fond au survol */
.btn-warning:hover {
    background-color: #ec971f;
    /* Orange foncé */
}

.btn-primary:hover {
    background-color: #286090;
    /* Bleu foncé */
}

/* Utiliser la propriété position pour fixer les boutons en bas du sidebar */
.bottom-content {
    position: sticky;
    /* Rester fixe lors du défilement */
    bottom: 0;
    /* Se positionner en bas du conteneur parent */
    width: 100%;
    /* Occuper toute la largeur du sidebar */
    background-color: white;
    /* Ajouter un fond blanc */
    z-index: 1;
    /* Placer le div au-dessus du sidebar */
}

/* Utiliser la propriété flex pour aligner les boutons horizontalement */
.mode {
    display: flex;
    /* Utiliser un conteneur flexible */
    justify-content: space-around;
    /* Répartir l'espace entre les boutons */
    align-items: center;
    /* Centrer les boutons verticalement */
}

.mr-3 {
    width: 22%;
    border-radius: 20%;
}