html, body {
  margin: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

#map {
  height: 100vh;
  width: 100%;
}

#searchBox {
  position: absolute;
  top: 12px;
  left: 50px;
  z-index: 1000;
  background: white;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,.3);
  width: 280px;
}

#addressInput {
  width: 190px;
  padding: 6px;
}

button {
  padding: 6px 8px;
  cursor: pointer;
}

#result {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.legend {
  background: white;
  padding: 10px;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,.3);
  font-size: 12px;
}