#overlay-legend-container-history {
  position: absolute;
  top: 20px; /* Adjust the distance from the top */
  left: 23%; /* Adjust the distance from the left */
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 1000;
  visibility: hidden;
}

.overlay-legend-item-history {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.overlay-legend-color-history {
  width: 20px; /* Adjust the width to make the square size consistent */
  height: 20px; /* Adjust the height to match the width for a square */
  margin-right: 8px;
  display: inline-block;
  background-color: currentColor; /* Set background color to the current color */
  border: none;
}
/* Styling for dashed line items */
.overlay-legend-line-history {
  height: 0;
  width: 30px;
  margin-right: 8px;
  display: inline-block;
  border-top: 2px dashed currentColor; /* Dashed border */
  background: none;
}
