.voxr-pwa-install-icon {
  position: fixed;
  top: 66%;
  right: 20px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #007bff;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s;
}
.voxr-pwa-install-icon img {
  width: 24px;
  height: 24px;
  filter: invert(32%) sepia(97%) saturate(4436%) hue-rotate(205deg) brightness(100%) contrast(100%);

}
@keyframes voxr-pwa-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.voxr-pwa-install-icon.pulse {
  animation: voxr-pwa-pulse 2s infinite;
}

