/* Pulse animation pour le bouton de localisation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
    border-radius: 8px;
}

.pulse-animation .location-arrow i {
    animation: pulse-icon 2s infinite;
    color: #dc2626 !important;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}