/* Menu */
body {
    padding-top: 56px;
}

/* Affichage des interlocuteurs */
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: inherit;
  }

button.accordion-button:focus{
    box-shadow: inherit;
}


.identity-card {
    margin: 0;
    padding: 0;
    border: none;
}

.identity-card .card-text {
    margin-bottom: 5px; 
}

/* Arborescence */
ul.tree {
    list-style-type: none;
    padding-left: 20px;
    position: relative;
}

li.tree {
    position: relative;
    padding-left: 20px;
}

/* Lignes verticales */
ul.tree > li.tree::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #555;
}

/* Lignes horizontales */
ul.tree > li.tree::after {
    content: "";
    position: absolute;
    top: 12px; /* Centré verticalement par rapport au texte */
    left: 0;
    width: 20px; /* Longueur de la ligne horizontale */
    height: 1px;
    background-color: #555;
}

/* Retirer la ligne verticale pour le dernier élément */
ul.tree > li.tree:last-child::before {
    height: 12px; /* Se termine juste avant le dernier élément */
}

/* Icône pour les dossiers */
.folder.tree::before {
    content: "📁 ";
}

/* Style pour les liens */
a.tree {
    text-decoration: none;
    color: #000;
}

a:hover.tree {
    text-decoration: underline;
}