.ng-osm-map-container {
    margin: 20px 0;
    position: relative;
    width: 100%;
}

.ng-osm-map-search {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.ng-osm-map-search input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.ng-osm-map-search button {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.ng-osm-map-search button:hover {
    background-color: #005177;
}

#ng-osm-map {
    width: 100%;
    height: 100%;
    border-radius: var(--ng-osm-map-border-radius);
    box-shadow: var(--ng-osm-map-shadow);
}

/* Standard-Icon Styles */
.ng-osm-map-default-icon {
    background: transparent;
    border: none;
}

.ng-osm-map-icon-inner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
}

/* Icon Farben */
.ng-osm-map-icon-inner[data-style="default"] {
    background-color: #0073aa;
}

.ng-osm-map-icon-inner[data-style="red"] {
    background-color: #dc3545;
}

.ng-osm-map-icon-inner[data-style="green"] {
    background-color: #28a745;
}

.ng-osm-map-icon-inner[data-style="yellow"] {
    background-color: #ffc107;
}

.ng-osm-map-icon-inner[data-style="purple"] {
    background-color: #6f42c1;
}

.ng-osm-map-icon-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .ng-osm-map-container {
        height: 300px !important; /* Standard-Höhe für mobile Geräte */
    }
}

.custom-div-icon {
    background: transparent;
    border: none;
}

.custom-div-icon div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

/* Leaflet Anpassungen */
.leaflet-container {
    font-family: inherit;
}

.leaflet-control-container .leaflet-control {
    margin: 10px;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    border-radius: 4px !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    background-color: white !important;
    color: #333 !important;
    border: none !important;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover {
    background-color: #f8f8f8 !important;
}

.leaflet-control-attribution {
    background: rgba(255,255,255,0.8) !important;
    padding: 2px 5px !important;
    font-size: 11px !important;
    border-radius: 2px !important;
} 