/* Triple Feed / Event Log Styles */
.feed {
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
}
.triple-row {
  display: grid;
  grid-template-columns: 10px 80px 80px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 5px 8px;
  border-bottom: 1px solid rgba(34,50,80,0.5);
  font-size: 0.82rem;
  font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.feed[data-ready="false"] .triple-row { animation: none; }
.triple-row:hover { background: rgba(255,255,255,0.02); }
.verb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.triple-subject { color: var(--muted); }
.triple-verb { font-weight: 600; }
.triple-object { color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.triple-time { color: var(--muted); font-size: 0.75rem; white-space: nowrap; }
.triple-app {
  display: inline-block;
  font-size: 0.7rem;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(74,168,255,0.1);
  color: var(--brand);
  margin-right: 6px;
}
.feed-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  font-size: 0.9rem;
}
.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-status {
  font-size: 0.75rem;
  color: var(--muted);
}
.feed-status .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
  background: var(--good);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 768px) {
  .triple-row { grid-template-columns: 10px 60px 60px 1fr auto; font-size: 0.75rem; }
}
