.hashLink {
  color: var(--bs-blue);
}

.map-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  padding: 1rem 0;
}

/* item style */
.map-item {
  flex: 0 1 auto;
  width: 80px;
  text-decoration: none;
}

.map-item img {
  width: 100%;
  height: auto;
  display: block;
}

.image-container {
  position: relative;
  text-align: center;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: var(--bs-secondary);
  font-weight: 600;
  pointer-events: none;
  text-align: center;
  text-shadow:
    0 0 8px #fff,
    0 0 4px #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.centered.white-label {
  color: var(--bs-white);
  text-shadow:
    0 0 8px rgba(0, 0, 0, 0.9),
    0 0 4px rgba(0, 0, 0, 0.9),
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.sticky-top-layers-offset {
  position: sticky !important;
  top: 91px;
  margin-top: 1rem;
  max-height: calc(98vh - 75px);
}
