/* Popup-Inhalt wirklich zentrieren */
.leaflet-popup-content {
    margin: 0 !important; /* entfernt Leaflets Standard-Margin (u.a. die 4px rechts) */
    text-align: center;   /* zentriert Text & Bilder horizontal */
    display: flex;
    justify-content: center;
}

/* Optional: Wenn der Inhalt schmaler sein darf */
.leaflet-popup-content-wrapper {
    padding: 0 !important; /* Tailwind-Padding übernimmt */
}

/* Optional: Bild anpassen, falls es kleiner als der Popup-Container ist */
.leaflet-popup-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
