#gps-preferred-source {
  position: fixed;
  right: 16px;
  bottom: 82px;
  z-index: 99999;
  transition: opacity .2s ease, transform .25s cubic-bezier(.4,0,.2,1);
}

#gps-preferred-source.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

#gps-preferred-source a {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ai-bg);
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--ai-bg), var(--ai-bg)),
    linear-gradient(135deg, #8b5cf6, #3b82f6, #22d3ee);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
}



#gps-preferred-source img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
