.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.25rem;
  background-color: #4f9913; /* gray-800 */
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.1s ease-out;
}

.tooltip:hover::after {
  opacity: 1;
}

[id^="nav"] {
  scroll-margin-top: 260px;
}

.container {
  overflow: auto; /* or scroll */
  scroll-margin-top: 260px;
}

#filtersPanel {
  color: black !important;
}

#filtersPanel button {
  color: black !important;
}

#filtersPanel input {
  color: black !important;
}

#searchInput {
  color: black !important;
}
