/*
 * Custom styles for PhotoSwipe map button
 * to align with the homepage map button style.
 */
.pswp__button--map {
  /* Use fixed positioning to place it relative to the viewport */
  position: fixed;
  
  /* Position in the bottom right corner */
  bottom: 20px;
  right: 20px;

  /* Reset properties from default PhotoSwipe button style */
  top: auto;
  left: auto;
  
  /* Apply styles from the homepage button */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #2c2c2c, #1f1f1f);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  z-index: 1600; /* Ensure it's above other UI elements like the top bar */
}

/* Hover and active effects from home.html */
.pswp__button--map:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pswp__button--map:active {
  transform: scale(0.95);
}