@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

*,
*:before,
*:after {
  box-sizing: border-box;
}
.custom-blue-bg {
  background-color: #f0f7fc; /* Default background color for all screens */
}

@media (max-width: 639px) {
  .custom-blue-bg {
    /* White background for screens smaller than 640px (sm breakpoint) */
    background-color: white;
  }
}

#tooltip {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  /* Ignore pointer events */
  position: absolute;
  z-index: 10;
  display: none;
  /* Start hidden */
  color: black;
}

.mapboxgl-popup-content {
  padding: 0;
}
