body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow: hidden; /* Remove scroll bars */
   background-color: #d5d4ca;
}

#top-banner {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  z-index: 9999;
}

@media screen and (max-width: 600px) {
  #map-container {
    position: absolute;
    transform: translate(-200%, 50%);
    width: 100%; /* Optional: adjust width for mobile */
    max-width: 100%; /* Optional: adjust max-width for mobile */
    /* Other mobile styles */
  }
}

/* For larger screens */
@media screen and (min-width: 601px) {
  #map-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;
    /* Desktop styles */
  }
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none; /* Allow image to extend beyond screen width */
  max-height: none; /* Allow image to extend beyond screen height */
  cursor: grab; /* Change cursor to indicate draggable element */
  user-drag: none; /* Disable default dragging behavior */
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.search-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  background-color: #f1f1f1;
}

.search-controls input[type="text"],
.search-controls button {
  margin: 5px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 50%;
  width: 15%;
}

.search-controls button {
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  width: 15%;
}

.search-controls button:disabled {
  opacity: 0.5; /* Adjust opacity to make it appear grayed out */
  cursor: not-allowed; /* Change cursor to indicate unclickable */
}

#pin {
  /* Animation properties */
  animation-name: flash;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Keyframes for the flash animation */
@keyframes flash {
  0% {
    opacity: 1; /* Start with full opacity */
  }
  50% {
    opacity: 0; /* Fade out at 50% */
  }
  100% {
    opacity: 1; /* Back to full opacity at the end */
  }
}