 #recenter {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 50px;
    background-color: #0d0d0e; /* blue tone */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
  }

  #recenter:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  #recenter svg {
    width: 24px;
    height: 24px;
    fill: white;
  }

  /* Tooltip style */
.tooltip {
  position: absolute;
  background: #222;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -100%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When active */
.tooltip.active {
  opacity: 1;
  transform: translate(-50%, -120%) scale(1);
}
