body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #222;
}

#container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

/* Sidebar */
#sidebar {
  width: 200px; /* Narrow on mobile */
  padding: 1em;
  background: #f9f9f9;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}

/* Map */
#map {
  flex: 1;
  height: 100%;
  min-height: 300px;
}
#clear-all{
  bottom: 10px;
}
/* Form elements */
input,
select,
button {
  margin-bottom: 0.5em;
  padding: 0.5em;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #3498db;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  border-radius: 4px;
  transition: background 0.3s;
}

button:hover {
  background: #2980b9;
}

/* Clear All button */
#clear-all {
  background: #e74c3c;
  margin-top: 0.5em;
}

#clear-all:hover {
  background: #c0392b;
}

/* List styles */
ul {
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 0.9em;
}

/* Booking link */
#booking-container {
  margin-top: 1em;
}

#booking-container a {
  display: inline-block;
  margin-top: 0.5em;
  text-decoration: none;
  color: white;
  background: #2ecc71;
  padding: 0.5em;
  border-radius: 4px;
  text-align: center;
  width: 90%;
}

@media (max-width: 600px) {
  #sidebar {
    width: 30%;
  }
}
