/* Install-to-device prompt banner (shown only when the app is installable). */
.wl-pwa-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: calc(100vw - 24px);
  background: #1d2b49;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  font-size: 14px;
}

.wl-pwa-text {
  font-weight: 600;
}

.wl-pwa-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.wl-pwa-btn {
  border: 0;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.wl-pwa-install {
  background: #fff;
  color: #1d2b49;
}

.wl-pwa-later {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.wl-pwa-later:hover {
  background: rgba(255, 255, 255, 0.24);
}

.wl-pwa-dismiss {
  background: transparent;
  color: #cbd5e1;
}

.wl-pwa-dismiss:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .wl-pwa-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    left: 12px;
    right: 12px;
    transform: none;
  }
  .wl-pwa-actions {
    justify-content: flex-end;
  }
}
