/* Phase 6 split from frontend/static/app.css */
/* Section: incidents */

/* ---------- Incident Row ---------- */
.incident-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.incident-row:last-child { border-bottom: none; }

.incident-icon { font-size: 18px; flex-shrink: 0; }
.incident-message { flex: 1; font-size: 13px; color: var(--text-primary); }
.incident-time { font-size: 11px; color: var(--text-muted); white-space: nowrap; }
