/* Tiny top-right status indicator with 3 dots and hover details */
.status-indicator {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.status-indicator__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.status-indicator__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #888;
}
.status-indicator__dot.ok { background: #22c55e; }
.status-indicator__dot.warn { background: #f59e0b; }
.status-indicator__dot.fail { background: #b00020; }

.status-indicator__panel {
  position: absolute;
  top: 36px;
  right: 0;
  min-width: 240px;
  max-width: 320px;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  display: none;
}

.status-indicator__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}
.status-indicator__row .label { flex: 1; font-weight: 600; font-size: 13px; }
.status-indicator__row .desc { font-size: 12px; opacity: 0.85; }

.status-indicator:focus-within .status-indicator__panel,
.status-indicator:hover .status-indicator__panel { display: block; }

.status-indicator__title {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 6px;
}

.status-indicator__footer {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.75;
}
