html, body {
    height: 100%;
    margin: 0;
}

#map {
    width: 100%;
    height: 100%;
}



/* caixa da busca */

#searchBox {
    position: relative;
}



/* botão da lupa */

#searchBtn {
    width: 34px;
    height: 34px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 16px;
}



/* painel da busca */

#searchPanel {
    display: none;
    position: absolute;
    top: 36px;
    left: 0;
    width: 260px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}



/* campo de digitação */

#searchInput {
    width: 100%;
    padding: 6px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
}



/* lista de resultados */

#searchResults {
    max-height: 200px;
    overflow-y: auto;
}



/* item da lista */

.searchResult {
    padding: 6px;
    cursor: pointer;
    font-size: 13px;
}



/* hover do item */

.searchResult:hover {
    background: #f0f0f0;
}