body {
  margin: 0;
  padding: 0;
}

#map {
  height: 100vh;
  width: 100%;
}

#sidebar {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #333;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 250px;
  z-index: 1000;
}

#sidebar div {
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

#languageInput {
  width: 100%;
  box-sizing: border-box;
}

#suggestions {
  position: absolute;
  top: 100%; /* Directly below input */
  left: 0;
  width: 100%;
  background: #444;
  color: #fff;
  max-height: 150px;
  overflow-y: auto;
  border-radius: 0 0 5px 5px;
  z-index: 1001;
}

#suggestions div {
  padding: 5px 10px;
  cursor: pointer;
}

#suggestions div:hover {
  background: #666;
}

#clearBtn {
  width: 100%;
  margin-top: 5px;
  padding: 5px 10px;
  background: #555;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#clearBtn:hover {
  background: #777;
}
