/* ═══════════════════════════════════════════════════════════════
   Enterprise Meal Access System — pages/audit-logs.css
═══════════════════════════════════════════════════════════════ */

/* ── AUDIT LOG ────────────────────────────────────────────────── */
.cn-audit-feed { display: flex; flex-direction: column; }
.cn-audit-entry {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.cn-audit-entry:last-child { border-bottom: none; }
.cn-audit-entry:hover { background: var(--surface-hover); }
.cn-audit-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.cn-audit-entry.scan .cn-audit-dot      { background: #3b82f6; }
.cn-audit-entry.reject .cn-audit-dot    { background: #ef4444; }
.cn-audit-entry.override .cn-audit-dot  { background: #f59e0b; }
.cn-audit-entry.config .cn-audit-dot    { background: #8b5cf6; }
.cn-audit-entry.system .cn-audit-dot    { background: #94a3b8; }
.cn-audit-body { flex: 1; }
.cn-audit-action { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.cn-audit-detail { font-size: 12px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.cn-audit-time { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); white-space: nowrap; }
