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

.content_list_legende_icon {
    margin: 0;
    padding: 8px;
    gap: 6px;
    display: flex;
    flex-direction: column;
}

/* Chaque item de la liste */
.content_list_legende_icon .list-group-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.content_list_legende_icon .list-group-item:hover {
  background-color: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateX(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Contenu interne (icône + texte) */
.content_single_marker_poi {
  display: flex;
  align-items: center;
  gap: 12px;
}

.content_single_marker_poi i,
.content_single_marker_poi img,
.content_single_marker_poi svg {
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.04);
}

/* Bloc texte (nom + description) */
.single_marker_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0; /* évite l'overflow du texte */
}

.single_marker_name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #212529;
  line-height: 1.2;
}

.single_marker_info span {
  color: #6c757d;
  font-size: 0.85rem !important;
  line-height: 1.3;
}

.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;
    }
}
