/* Chronologie d'une recherche — feuille partagée débouché / admin. */

.tl-liste {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Le trait vertical qui relie les étapes : c'est lui qui fait lire l'ensemble comme une
   suite, et non comme une liste de faits sans rapport. */
.tl-liste::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e3eae6;
}

.tl-etape {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
}

.tl-puce {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f3;
    color: #64748b;
    font-size: 11px;
    border: 2px solid #fff;
}

.tl-corps { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tl-texte { font-weight: 600; font-size: 14px; }
.tl-date  { font-size: 12px; color: #6b7280; }
.tl-acteur { font-weight: 600; }

/* Une couleur par nature d'étape : création, modification, arrêt, résultat. L'œil
   distingue ainsi « ce que quelqu'un a fait » de « ce que ça a produit ». */
.tl-creation .tl-puce { background: #dcfce7; color: #166534; }
.tl-modif .tl-puce    { background: #dbeafe; color: #1e40af; }
.tl-actif .tl-puce    { background: #dcfce7; color: #166534; }
.tl-arret .tl-puce    { background: #fee2e2; color: #991b1b; }
.tl-resultat .tl-puce { background: #fef3c7; color: #92400e; }

.tl-vide {
    color: #6b7280;
    font-size: 14px;
    padding: 12px 0;
}
