/* Operations Centre — System health items */
.health-item       { display: flex; align-items: center; gap: 11px; padding: 10px 12px; background: var(--card); border: 1px solid var(--brd); border-radius: 9px; margin-bottom: 7px; }
.h-icon            { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.h-name            { font-size: 13px; font-weight: 600; }
.h-status          { font-size: 11px; }
.h-ok              { color: var(--grn); }
.h-warn            { color: var(--yel); }
.h-down            { color: var(--red); }
