body {
    background-color: #111827; /* Tailwind gray-900 */
    -webkit-tap-highlight-color: transparent; /* Removes blue tap highlight on mobile */
    user-select: none; /* Prevents text selection while tapping the button */
}

/* Radar Pulse Animation for the GPS locator */
@keyframes ping-slow {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping-slow {
    animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Smooth fade for the UI */
[v-cloak] { display: none; }
.fade-enter-active, .fade-leave-active { transition: opacity 0.3s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }
