body {
  margin: 0;
  padding: 0;
}
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

#menuButton {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: white;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
}

#sideMenu {
  position: absolute;
  top: 0;
  right: -270px;
  width: 220px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #ccc;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 999;
}
#sideMenu.open {
  right: 0;
}
#sideMenu label {
  display: block;
  margin-bottom: 12px;
  font-family: sans-serif;
  font-size: 14px;
}

#sideMenu .modern-button {
  background: linear-gradient(to right, #007bff, #00aaff);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

#sideMenu .modern-button:hover {
  background: linear-gradient(to right, #0056b3, #007bff);
}

.venmo-link {
  display: inline-block;
  margin-top: 8px;
  color: #007bff;
  text-decoration: none;
}

.venmo-link:hover {
  text-decoration: underline;
}


.toggle-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: sans-serif;
  font-size: 14px;
}

/* Switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

/* Knob */
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Checked state */
.switch input:checked + .slider {
  background-color: #2196F3;
}

.switch input:checked + .slider:before {
  transform: translateX(18px);
}

/* Optional rounded style */
.slider.round {
  border-radius: 24px;
}
