/* components/map.css - Karten-spezifische Styles */
#map-container {
    flex-grow: 1;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

/* Polygon Label Styles */
.polygon-label {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #0066cc;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    color: #0066cc;
    text-align: center;
    white-space: nowrap;
}

.polygon-label-small {
    font-size: 10px;
}

/* Sicherstellen, dass Labels über anderen Kartenelementen liegen */
.leaflet-div-icon {
    background: transparent !important;
    border: none !important;
}