/* Set the size of the div element that contains the map */
#map {
  height: 400px;
  width: 800px;
  padding: 5px;
  
  /* this will center the division on the page */
  margin-left: auto;
  margin-right: auto;
}

#address-panel {
  position: static;
  background-color: #fff;
  padding: 5px;
  text-align: center;
  font-family: "Roboto", "sans-serif";
  line-height: 30px;
  width: 800px;
  
  /* this will center the division on the page */
  margin-left: auto;
  margin-right: auto;
}

#originField {
  width: 400px;
}

#directionsPanel {
  position: static;
  width: 800px;
  background-color: #fff;
  padding: 5px;
  
  /* this will center the division on the page */
  margin-left: auto;
  margin-right: auto;
}