.mapframe {
  position: fixed;
  top: 60px; /* Adjust if you have a header above */
  left: 1000px;
  max-width: 1020px;
  z-index: 10000; /* Super high to guarantee layering above intrusive widgets */
  background-color: transparent;
  pointer-events: auto;
}

.mapframe nav {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 0.75em 1em;
}

.mapframe nav a {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 14pt;
  color: #7E7E7E;
  text-decoration: none;
  text-shadow: 3px 2px 3px rgba(255,255,255,.2), 4px 4px 4px rgba(206,0,0,0.16);
  font-weight: 700;
  transition: color 0.3s ease;
}

.mapframe nav a:hover {
  color: #8A5759;
}