body {
  font-family: Arial, sans-serif;
}

#map {
  height: 500px;
  width: 100%;
}

.floating-map-container {
  display: none; /* Hidden by default */
  position: fixed;
  top: 20px;
  right: 20px;
  width: 600px;
  height: 600px;
  border: 1px solid #888;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
}

.floating-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f1f1f1;
}

.closeMapButton {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: none;
}

.map-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

.map-instructions {
  padding: 2px;
  text-align: center;
  background-color: #fafafa;
  border-bottom: 1px solid #ddd;
}

#openMapButton {
  margin: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

#openMapButton:hover {
  background-color: #0056b3;
}
