/* Set the size of the div element that contains the map */
#map {
  position: relative;
    z-index: 3;
  height: 80%;
  /* The height is 600 pixels */
  width: 100%;
  /* The width is the width of the web page */
}
#floating-panel {
  position: absolute;
  top: 60px;
  left: 25%;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: "Roboto", "sans-serif";
  line-height: 30px;
  padding-left: 10px;
}
#predictwind-panel {
  position: absolute;
  top:60px;
  right: 5%;
  z-index: 8;
  padding: 5px;

  text-align: center;
  font-family: "Roboto", "sans-serif";
  line-height: 30px;
  padding-left: 10px;
}
.contextMenu {
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  color: #0d1f49;
  width: max-content;
  margin: 1px;/*Please note that this margin is necessary otherwise browser will open its own context menu*/
}