#cursorPosition {
  background: white;
  position: fixed;
  top: 7rem;
  z-index: 10;
  font-size: 0.8rem;
}

#copyConfirmation {
  background: white;
  position: fixed;
  top: 10rem;
  font-size: 0.8rem;
  display: none;
}

#copyConfirmation.show {
  display: block;
}

.map-area {
  position: absolute;
  transition: background-color 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border-radius: 0.5rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-size: 1px;
}

.map-area:hover {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  /*  background-color: rgba(204, 172, 11, 0.3);
    border: 2px solid #ffcc00;*/
  background: url(/modules/custom/bluegum_responsive_map/assets/hand-image.png) no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  color: black;
  cursor: pointer;
}

.info-bubble {
  position: absolute;
  background-color: rgba(7, 44, 15, 0.85);
  color: white;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  max-width: 30vw;
  font-size: 0.7rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease-out;
  pointer-events: auto;
}

@media (min-width: 60rem) {
  .info-bubble {
    max-width: 300px;
    font-size: 0.9rem;
  }
}
.info-bubble.show {
  display: block;
}

.info-bubble-content {
  margin-bottom: 0.75rem;
}
.info-bubble-content .coordinates {
  opacity: 0.5;
  font-size: 0.7rem;
}

.info-bubble-close {
  background-color: #ffcc00;
  color: black;
  border: none;
  border-radius: 0.5rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  float: right;
}

.info-bubble-close:hover {
  background-color: rgba(204, 172, 11, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* Tooltip arrow - optional, for a more refined look */
.info-bubble::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #333 transparent transparent transparent;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Adjust arrow for different positions if bubble is forced to move */
.info-bubble.top::before {
  top: -8px;
  bottom: auto;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #333 transparent;
}

/*# sourceMappingURL=areas.css.map */
