/* ============================================================================
   shared/cf-conv-events.css — Timeline humana de eventos da conversa (M21.2)
   ============================================================================ */

.cf-conv-events-empty {
  display: block; padding: 10px 0;
  color: #94a3b8; font-style: italic; font-size: 11.5px;
}

.cf-conv-event {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 8px 4px; width: 100%;
  background: transparent; border: none;
  font-family: inherit; text-align: left;
  cursor: pointer; border-radius: 6px;
  transition: background .12s;
}
.cf-conv-event:hover { background: #f8fafc; }
.cf-conv-event + .cf-conv-event {
  border-top: 1px dashed #f1f5f9;
}
.cf-conv-event-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.cf-conv-event-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.cf-conv-event-text strong {
  font-size: 12px; color: #0f172a; font-weight: 600; line-height: 1.3;
}
.cf-conv-event-text small {
  font-size: 10.5px; color: #94a3b8;
}
.cf-conv-event-text p {
  margin: 4px 0 0 0; font-size: 11.5px; color: #64748b; line-height: 1.45;
}

/* M22.7: detalhe de evento (modal) */
.cf-conv-event-detail {
  display: flex; flex-direction: column; gap: 12px;
}
.cf-conv-event-detail-row {
  display: flex; flex-direction: column; gap: 3px;
}
.cf-conv-event-detail-row small {
  font-size: 10px; color: #94a3b8; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}
.cf-conv-event-detail-row span,
.cf-conv-event-detail-row p {
  font-size: 13px; color: #0f172a; line-height: 1.5; margin: 0;
}
