/* ============================= */
/* PWA-ONLY FLOATING BUTTON UI  */
/* ============================= */

.pwa-only {
  display: none; /* default hidden */
}

.pwa-standalone .pwa-only {
  display: block;
}

/* Floating Action Button */
.pwa-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #02685a;
  color: #fff;
  font-size: 26px;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 10001;
  cursor: pointer;
}

/* Optional slide panel */
.pwa-slide-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 200px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  display: none;
  z-index: 10000;
  font-family: "Roboto";
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
}

.pwa-slide-panel.active {
  display: block;
}

/* Links container */
.pwa-panel-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Individual links */
.pwa-link {
  text-decoration: none;
  color: #1f2937;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

/* Hover (desktop PWA) */
.pwa-link:hover {
  background: #f4f7fb;
  border-color: #cbd5e1;
}

/* Active / clicked state */
.pwa-link.active {
  border: 1.5px solid #0b3c5d;
  background: #eef4f8;
  color: #02685a;
  font-weight: 600;
}