html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
}


header {
  color: #fff;
  padding: 10px;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #6252b7;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  color: #6252b7;
}
input[type="text"]:focus {
    outline-width: 0;
}

#map {
  width: 100%;
  height: calc(100vh - 70px); /* Adjust as needed */
  background-color: #f0f0f0;
}

.location-list-container {
  position: fixed;
  bottom: 0;
  left: 3%;
  width: 94%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  z-index: 1000;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.location-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 200px; /* Initial height */
  overflow-y: auto;
  font-family: "Nunito", sans-serif;
}

.location-list li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  font-family: "Nunito", sans-serif;
}

.location-list li:last-child {
  border-bottom: none;
}

/* Adjust the height of location list */
.location-list.adjustable {
  max-height: calc(100vh - 200px); /* Adjust based on screen size and other elements */
}

.location-list li {
  padding: 5px 10px;
}
.location-list li h3 {
  margin:0px;
  margin-left:5px;
}
.location-list li p {
  margin:0px;
}

.location-item{
  cursor: pointer;
}

.hide-show{
  padding: 8px 0px;
  width: 100%;
}

.color-bar{
  height: 5px;
  width: 50px;
  background: gray;
  border-radius: 5px;
  margin: 0px auto;
}

.location-text{
  display: flex;
  margin-bottom: 5px;
}

.location-text img{
  height: 20px;
}
.display-flex {
  display: flex;
}
.display-flex .address-section {
  flex: 1;
}
.display-flex .map-icon {
  margin: auto;
}