.content_right_side_body_jheo_js {
    overflow-y: auto;
    height:  76vh; /* Hauteur 100% de la fenêtre */
    max-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
}

.content_list_legende_icon {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Disposition en colonne */
    gap: 10px;
}

.custom-list-item {
    display: flex;
    align-items: center;
    padding: 5px;
    width: 100%; /* Occupe toute la largeur */
    box-sizing: border-box;
    border-bottom: 1px solid #ddd; /* Ligne de séparation pour la lisibilité */
}

.image_icon_rubrique {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0; /* Empêche l'icône de rétrécir */
}

.item-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9em;
    flex-grow: 1; /* Prend tout l'espace restant */
}

.list-group-item {
    display: flex;
    flex-direction: row;

    padding: 10px;
}

.content_single_marker_poi {
    display: flex;

    gap: 10px;
    width: 100%;
}

.single_marker_poi {
    position: relative;
}

.single_marker_info {
    flex: 1;
}

.single_marker_name {
    font-weight: bold;
    font-size: 1rem;
}

.description {
    font-size: 0.9rem;
    font-style: italic;
}

/* Pour la réactivité */
@media (max-width: 768px) {
    .list-group-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .single_marker_name {
        font-size: 0.9rem;
    }

    .description {
        font-size: 0.8rem;
    }

    .single_marker_image {
        width: 15px;
        height: 15px;
    }
}
