.leaflet-container {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    touch-action: none;
    font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: #2c3e50;
}

.leaflet-layers,
.leaflet-tile-pane,
.leaflet-overlay-pane,
.leaflet-popup-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.leaflet-tile-pane {
    overflow: hidden;
}

.leaflet-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
}

.leaflet-tile {
    position: absolute;
    width: 256px;
    height: 256px;
    image-rendering: optimizeSpeed;
    will-change: transform;
    pointer-events: none;
}

.leaflet-container img {
    max-width: none !important;
    max-height: none !important;
    border: 0;
    box-shadow: none;
}

.leaflet-overlay-pane {
    pointer-events: none;
}

.leaflet-marker-icon,
.leaflet-div-icon {
    position: absolute;
    pointer-events: auto;
    will-change: transform;
}

.leaflet-marker-icon-default {
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 45%, rgba(211,51,51,0.9) 46%, rgba(211,51,51,1) 100%);
    border-radius: 50% 50% 50% 0;
    transform-origin: center bottom;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.leaflet-marker-icon,
.leaflet-marker-icon * {
    pointer-events: auto;
}

.leaflet-popup-pane {
    pointer-events: none;
}

.leaflet-popup {
    position: absolute;
    min-width: 160px;
    max-width: 320px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 8px 10px;
    color: inherit;
    transform: translate(-50%, -100%);
    pointer-events: auto;
}

.leaflet-popup h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
}

.leaflet-popup p {
    margin: 0 0 6px;
    font-size: 0.875rem;
}

.leaflet-popup a {
    color: #1d4ed8;
    text-decoration: none;
}

.leaflet-popup a:hover,
.leaflet-popup a:focus {
    text-decoration: underline;
}

.leaflet-container:focus,
.leaflet-container:focus-visible {
    outline: none;
}

.leaflet-container .leaflet-marker-icon:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}
