/* xmercado-map.css — Estilos do autocomplete e elementos de mapa OSM */

.xmap-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.xmap-suggestion-item:hover {
    background-color: #f5f7ff;
    color: #007bff;
}

#xmap-search-results {
    position: absolute;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 220px;
    overflow-y: auto;
    width: 100%;
    display: none;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

/* Sobrepõe z-index do Leaflet para não conflitar com modais Bootstrap */
.leaflet-top, .leaflet-bottom {
    z-index: 400;
}

/* Atribuição personalizada — remove menções ao Leaflet, mantém © XMERCADO */
.leaflet-control-attribution a[href*='leafletjs.com'],
.leaflet-control-attribution span:has(a[href*='leafletjs.com']) {
    display: none !important;
}
.leaflet-control-attribution .leaflet-attribution-flag {
    display: none !important;
}
