/* Source badge */
.pws-arbo-source {display: flex; align-items: center; gap: .5rem;}

/* Arbre racine */
.pws-tree {list-style: none; margin: .20rem 0 0 0; padding-left: 0;}

/* Sous niveaux */
.pws-tree ul {list-style: none; margin: .10rem 0 0 .9rem; padding-left: .9rem;}

/* Chaque noeud */
.pws-tree ul > li.pws-tree-node {
    position: relative; margin: .05rem 0; padding: .15rem .15rem .15rem .35rem; display: inline-block; max-width: 100%;
}

/* ============================= */
/*  TRAIT HORIZONTAL             */
/* ============================= */
.pws-tree ul > li.pws-tree-node::before {
    content: ""; position: absolute; left: -.9rem; top: .75em; width: .9rem; border-top: 2px solid rgba(0,0,0,.08);
}

/* ============================= */
/*  TRAIT VERTICAL               */
/* ============================= */
.pws-tree ul > li.pws-tree-node::after {
    content: ""; position: absolute; left: -.9rem; top: -0.2em; bottom: -0.2em; border-left: 2px solid rgba(0,0,0,.08);
}

/* ============================= */
/*  DERNIER ELEMENT = ANGLE └    */
/* ============================= */
.pws-tree ul > li.pws-tree-node:last-child::after {bottom: .85em;}