/**
 * @package     J2Commerce
 * @subpackage  plg_system_leafletmap
 *
 * @copyright   (C)2024-2026 J2Commerce, LLC <https://www.j2commerce.com>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 *
 * Custom Leaflet map styles for J2Commerce / Bootstrap 5 integration.
 */

.leaflet-map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--bs-border-color, #dee2e6);
}

/* Ensure map renders above any z-index conflicts */
.leaflet-map-container .leaflet-pane {
    z-index: 1;
}

/* Bootstrap 5 integration -- inherit site font stack */
.leaflet-container {
    font-family: inherit;
    font-size: inherit;
}

/* Popup styling to match site theme */
.leaflet-popup-content-wrapper {
    border-radius: 0.375rem;
    font-size: 0.875rem;
}
