.angie-france-map-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.angie-france-map-container {
    width: 100%;
    background-color: #E6E6E6;
    z-index: 1; /* keep it below standard dropdowns */
}

/* Custom Marker Styling */
.custom-pin {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pin-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #E61132; /* default */
    position: relative;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 4px 8px rgba(0,0,0,0.3);
    animation: bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.pin-marker::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 6px 0;
    border-style: solid;
    border-color: #E61132 transparent transparent transparent; /* default */
}

@keyframes bounce {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.1);
}
.leaflet-popup-content {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 10px 15px;
    text-align: center;
    color: #333;
}
