
.osm-map {
    background: #f8f9fa;
}
.custom-marker {
    background: none;
    border: none;
}
.custom-marker i {
    font-size: 16px;
    background: inherit;
    color: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.custom-marker i:hover {
    transform: scale(1.1);
}
.map-popup {
    min-width: 250px;
}
.popup-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Custom Attribution Control */
.custom-attribution {
    background: none;
    margin: 0;
    padding: 0;
}

.attribution-button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #666;
}

.attribution-button:hover {
    background: #f8f9fa;
    color: #333;
}

.attribution-content {
    display: none;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    min-width: 200px;
}

.attribution-content p {
    margin: 0;
    padding: 2px 0;
}

.custom-attribution.expanded .attribution-content {
    display: block;
}

.leaflet-bottom.leaflet-right {
    bottom: 5px;
    right: 5px;
}

.leaflet-container .leaflet-control-attribution {
    background: transparent !important;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    }
}