/* ---------------------------------------------------------------------
   Phase 3 — PWA status and installation UI
------------------------------------------------------------------------ */

.pwa-status {
  min-height: 44px;
  max-width: 15rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--control-border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-size: var(--step--1);
  font-weight: 600;
}

.pwa-status[data-state="offline"] {
  color: var(--text);
}

.pwa-status[data-state="update"] {
  color: var(--accent-strong);
}

@media (max-width: 640px) {
  .pwa-status {
    width: 44px;
    max-width: 44px;
    padding: 0.4rem;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
  }

  .pwa-status::before {
    content: "↻";
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .pwa-status {
    display: none !important;
  }
}
