/* Live-Status grid + dots */
.kb-live-grid{ display:grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap:14px; margin-top:12px;}
.kb-live-card{ padding:14px; border-radius:14px; border:1px solid var(--kb-border,#1b2544);
  background:linear-gradient(180deg, rgba(18,28,60,.55), rgba(14,22,48,.55)); color:#dbe7ff; }
.kb-live-card .row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.kb-live-card .sub{ font-size:12px; color:#a8b5dc }
.kb-live-card .status{ display:flex; align-items:center; gap:8px; font-size:12px; color:#a8b5dc }
.kb-live-card .dot{ width:10px; height:10px; border-radius:999px; box-shadow:0 0 6px currentColor }
.kb-live-card .dot.online{ background:#22c55e; color:#22c55e }
.kb-live-card .dot.offline{ background:#ef4444; color:#ef4444 }