/* Estilos para el sistema de mapas y búsqueda de direcciones */

/* Contenedor de ejemplos de búsqueda */
.search-examples {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #007bff;
}

.search-examples strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.search-examples ul {
    margin: 5px 0 0 15px;
    padding: 0;
}

.search-examples li {
    margin-bottom: 3px;
    line-height: 1.4;
}

.search-examples em {
    font-style: normal;
    font-weight: 600;
    color: #495057;
}

.search-examples div {
    margin-top: 5px;
    font-style: italic;
    color: #6c757d;
}

/* Sugerencias de autocompletado */
.address-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.address-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: background-color 0.2s;
}

.address-suggestion-item:hover {
    background-color: #f5f5f5;
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

/* Controles del mapa */
.map-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.map-controls .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Contenedor del mapa */
#mapContainer {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 10px;
    display: none;
}

/* Botón de ver mapa */
#openMapsBtn {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .map-controls {
        flex-direction: column;
    }
    
    .map-controls .btn {
        width: 100%;
    }
    
    .search-examples {
        font-size: 11px;
    }
}