.hmoob-realtime-indicator {
  position: fixed;
  left: 18px;
  bottom: 64px;
  z-index: 9999;
  display: inline-grid;
  grid-template-columns: 10px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  min-width: 132px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .16);
  color: #111827;
  cursor: default;
  backdrop-filter: blur(12px);
}

.hmoob-realtime-indicator span {
  grid-row: 1 / 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9ca3af;
}

.hmoob-realtime-indicator strong {
  font-size: 12px;
  line-height: 1;
}

.hmoob-realtime-indicator small {
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.hmoob-realtime-indicator.is-online span {
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, .16);
}

.hmoob-realtime-indicator.is-offline span {
  background: #ef4444;
  box-shadow: 0 0 0 5px rgba(239, 68, 68, .14);
}

.hmoob-realtime-indicator.is-checking span {
  background: #f59e0b;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, .14);
}

@media (max-width: 980px) {
  .hmoob-realtime-indicator {
    left: calc(12px + env(safe-area-inset-left));
    bottom: calc(124px + env(safe-area-inset-bottom) + 12px);
    min-width: 118px;
    padding: 8px 10px;
  }
}
