      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }

      #map-canvas {
        height: 100%;
        width: 100%;
      }
      #content-pane {
        position: absolute;
        z-index: 5;
        background-color: transparent;
        padding: 1px;
        border: 1px solid #999;

      }
     #inputDiv {
        position: absolute;
        z-index: 5;
        background-color: transparent;
        padding: 1px;
        border: 1px solid #999;

      }
      #copyrightDiv {
  position:relative;
  background-color:gray;
  bottom: 10;
  width: 70%;
  color: blue;
        font-size: 14px;
        border: 1px solid #999;
      }
      #resultDiv {
  position:fixed;
  bottom: 100px;
  background-color: white;
  overflow: auto;
  max-height: 60%;
  width: 40%;
         z-index: 5;
       font-size: 11px;
        border: 1px solid #999;
      }
      #tableDiv {
  position:fixed;
  bottom: 100px;
  background-color: white;
  overflow: auto;
  max-height: 60%;
  width: 40%;
         z-index: 5;
       font-size: 11px;
        border: 1px solid #999;
      }
  #googleMap {
  width:70%;
  height:90%;
  resize:both;
  }
 
      .delete-menu {
        position: absolute;
        background: white;
        padding: 3px;
        color: #666;
        font-weight: bold;
        border: 1px solid #999;
        font-family: sans-serif;
        font-size: 12px;
        box-shadow: 1px 3px 3px rgba(0, 0, 0, .3);
        margin-top: -10px;
        margin-left: 10px;
        cursor: pointer;
      }
      .delete-menu:hover {
        background: #eee;
      }
  #unitBtn {
  background-color : blue;
    color : white;
    font-weight: bold;
    border: 2px solid #999;
    font-family: sans-serif;
    font-size: 12px;
    outline-style: outset;
  box-sizing: border-box;
  }

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  border: 3px solid #f1f1f1;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=file], .form-container input[type=password] {
  width: auto;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=file]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}
/* Tooltip styles  */

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 100;
    background-color: white;
    color: white;
    width: auto;
    height: auto;
    overflow: auto;
    box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
    border-radius: 2px;
    padding: 1px 3px;
    margin-top: -5px;
    margin-left: 0px;
    box-sizing: border-box;
}

.dropdown:hover .dropdown-content {
    display: block;
    overflow: auto;
}
/* Dropdown menu */
.navbar {
    z-index: 1;
  overflow: hidden;
    width: auto;
    height: auto;
    overflow: auto;
    box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
    border-radius: 2px;
    padding: 1px 3px;
    margin-top: -5px;
    margin-left: 0px;
    box-sizing: border-box;
  background-color: blue;
}

.navbar a {
  float: left;
  font-size: 14px;
  color: white;
  text-align: center;
  padding: 12px 12px;
  text-decoration: none;
}

.dropdown {
    z-index: 1;
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 14px;  
  border: none;
  outline: none;
  color: white;
  padding: 12px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: grey;
  cursor: pointer;
}

.dropdown-content a {
  float: none;
  color: blue;
  padding: 12px 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
  cursor:pointer;
}

.dropdown:hover .dropdown-content {
  display: block;
  cursor:pointer;
}
  /* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
} 
