/* Feed: lista de atividade recente (dot colorido + título + meta em mono). */

.feed {
  padding: 4px 0;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.feed-row {
  display: flex;
  gap: 14px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
}
.feed-row:last-child { border-bottom: 0; }

.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  margin-top: 7px;
  flex-shrink: 0;
}
.feed-dot.warn    { background: var(--warn); }
.feed-dot.info    { background: var(--info); }
.feed-dot.err     { background: var(--err); }
.feed-dot.pending { background: var(--text-faint); }

.feed-content { flex: 1; min-width: 0; }
.feed-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-title b {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent);
}
.feed-meta {
  font-size: 11.5px;
  color: var(--text-faint);
  font-family: var(--font-mono);
}
.feed-empty {
  padding: 28px 20px;
  text-align: center;
  color: var(--text-faint);
  font-size: 12.5px;
  font-family: var(--font-mono);
}
