* {
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
}

#search {
  position: absolute;
  top: 10px;
  left: 50px;
  background-color: white;
  padding: 5px;
  margin: 0;
  z-index: 1;
  font-size: 14px;
  border: 3px solid white;
  border-radius: 15px;
}

#latLngText {
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: white;
  padding: 5px;
  margin: 0;
  z-index: 1;
  font-size: 14px;
  border: 3px solid white;
  border-radius: 15px;
}


/* Map styles */
canvas {
  width: 100%;
  height: 100%;
}

#mapRenderCanvas {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: black;
  padding: 0px;
  margin: 0;
  z-index: 0;
}
.mapLabel, .mapLabelLocalSector {
  font-family: Arial, Helvetica, sans-serif;
  color: red;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  text-align: center;
  padding: 3px;
  iconSize: 30px 30px;
}
.mapLabelLocalSector {
  color: #0c0;
}

.marker {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  background-color: red;
  border-color: black;
  border-style: solid;
  border-width: 2px;
  font-size: 14px;
  font-weight: bold;
  display: table;
  vertical-align: middle;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  line-height: 40px;
  line-width: 40px;
  height: 40px;
  width: 40px;
  margin: 0px;
  padding: 0px;
}

/* Dropdown class support */
.dropdown {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: blue;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  padding: 5px;
  font-weight: normal;
  color: black;
  z-index: 4;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}
