/**
 * Mapbox-specific styles for WPSL Statistics.
 * 
 * @since 2.0.0
 */

/* Marker bounce animation for Mapbox */
@keyframes wpsl-marker-bounce {
    0%, 100% {
        margin-top: 0;
    }
    50% {
        margin-top: -20px;
    }
}

.wpsl-marker-bounce {
    animation: wpsl-marker-bounce 0.6s ease-in-out 2;
}

/* Mapbox marker styling */
.wpsl-stats-marker {
    cursor: pointer;
}
