a {
  color: orange;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip_img {
  position: relative;
  display: inline-block;
  border-bottom: 0px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  opacity: 90%;
  background-color: orange;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
  border-width: 5px;
  border-style: solid;
  border-color: black;
  box-shadow: 5px 5px 25px grey;
}

.tooltip_img .tooltiptext {
  visibility: hidden;
  width: 150px;
  opacity: 90%;
  background-color: orange;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
  border-width: 5px;
  border-style: solid;
  border-color: black;
  box-shadow: 5px 5px 25px grey;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -55px;
  border-width: 15px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip_img .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -55px;
  border-width: 15px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip_img:hover .tooltiptext {
  visibility: visible;
}


/* HTML & CSS marker styles for Vehicle Marker */
.vehicle_marker_info_field {
  background-color: orange;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
  border: 3px solid black; // border
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}

.vehicle_marker_info_field::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid orange;
}