/**
 * Activity Log Pro - Leaflet Map Fixes
 * 
 * Fixes for Leaflet image paths and styling issues.
 * Uses CSS custom properties for dynamic plugin URLs.
 */

:root {
    --alp-plugin-url: '';
}

/* Fix Leaflet control layers toggle icon */
.leaflet-control-layers-toggle {
    background-image: var(--alp-leaflet-layers-icon) !important;
}

/* Fix Leaflet retina control layers toggle icon */
.leaflet-retina .leaflet-control-layers-toggle {
    background-image: var(--alp-leaflet-layers-retina-icon) !important;
}

/* Fix default icon path for Leaflet */
.leaflet-default-icon-path {
    background-image: var(--alp-leaflet-marker-icon) !important;
}

/* Fix marker icon paths for Leaflet */
.leaflet-marker-icon {
    background-image: none !important;
}