/* Coluna marcador: linha deve passar por todas as bolinhas */
#divListLogLeadExterno .feed-marker {
  position:relative;
  display:flex;
  justify-content:center;
}
#divListLogLeadExterno .feed-marker:after {
  content:"";
  position:absolute;
  top:0; bottom:0;       /* linha contínua de cima a baixo */
  width:2px;
  background:#e5e7eb;
  z-index:0;
}
#divListLogLeadExterno .feed-dot {
  width:16px; height:16px;
  border-radius:50%;
  background:#fff;               /* branco no fundo */
  border:4px solid #9ca3af;      /* borda cinza = bolinha */
  z-index:1;                     /* bolinha por cima da linha */
}

/* Resumo ocupa toda a célula, sem quebrar */
#divListLogLeadExterno .feed-note {
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:6px;
  padding:6px 10px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* Centralizar a lupa na coluna de ação */
#divListLogLeadExterno .feed-actions {
  display:flex;
  align-items:center;
  justify-content:center;
}
#divListLogLeadExterno .feed-actions a {
  color:#2563eb;
  text-decoration:none;
  opacity:.8;
}
#divListLogLeadExterno .feed-actions a:hover {
  opacity:1;
}
