/* Animated Route Map Styles */

.animated-route-marker {
    background: transparent;
    border: none;
}

.animated-route-marker-inner {
    width: 20px;
    height: 20px;
    background: #007bff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Optional: Route line animation glow */
.leaflet-interactive.animated-route-line {
    filter: drop-shadow(0 0 3px rgba(0, 123, 255, 0.5));
    transition: filter 0.3s ease;
}

