#map {
    height: 500px;
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Para todos los popups de Leaflet */
.leaflet-popup-content-wrapper {
    max-height: 200px;
    overflow: auto;    
}

/* Marcador tipo pin con bandera dentro */
.flag-marker-pin {
    width: 36px;
    height: 48px;
    position: relative;
    background: url('https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png') no-repeat center bottom;
    background-size: 36px 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.flag-marker-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-top: 7px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    background: #fff;
	object-fit: cover;
    border: 2px solid #fff;
}