.host-status {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #475569;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.14);
  font: 600 13px/1.2 Arial, sans-serif;
  backdrop-filter: blur(8px);
}

.host-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #94a3b8;
}

.host-status-active {
  border-color: #86efac;
  color: #166534;
  background: rgba(240, 253, 244, 0.97);
}

.host-status-active .host-status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.host-status-inactive {
  border-color: #fca5a5;
  color: #991b1b;
  background: rgba(254, 242, 242, 0.97);
}

.host-status-inactive .host-status-dot {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
}

.host-download-button {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-left: 3px;
  padding: 0 11px;
  border-radius: 999px;
  background: #b8004c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 120ms ease,
    background-color 120ms ease;
}

.host-download-button:hover {
  background: #8f003b;
  transform: translateY(-1px);
}

.host-download-button[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .host-status {
    top: 8px;
    right: 8px;
    padding: 0 10px;
  }
}
