#map {
  height: 100vh;
  width: 100%;
}

#search {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
  width: 80%;
  padding: 10px;
}

#results {
  position: absolute;
  top: 60px;
  left: 10px;
  z-index: 999;
  background: white;
  width: 80%;
  max-height: 300px;
  overflow-y: auto;
}

.item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.item:hover {
  background: #f2f2f2;
}