/**
 * Neukölln Map Plugin - Basis CSS
 */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.neukoelln-map-container,
.map-element {
    width: 100%;
    height: 600px;
    position: relative;
    margin: 0;
    padding: 0;
}

.neukoelln-map-container #map,
.map-element #map {
    width: 100%;
    height: 100%;
}

/* Optional: Styling für Marker-Popups */
.maplibregl-popup-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 12px;
    max-width: 300px;
}

.maplibregl-popup-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .neukoelln-map-container,
    .map-element {
        height: 400px;
    }
}

