.map-wrapper .container {
  max-width: 1000px;
}

.map-wrapper {
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#search {
  --size: 34px;
  --size-icon: calc(var(--size) + 8px);
  --margin: -4px;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 80%;
  max-width: 300px;
  display: flex;
  align-items: center;
}

@media all and (max-width: 768px) {
  #search {
    top: -50px;
  }
}

#search-input {
  width: 100%;
  padding: 0px 15px 0px 55px;
  height: var(--size);
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

#search::before {
  content: "";
  position: absolute;
  left: var(--margin);
  width: var(--size-icon);
  height: var(--size-icon);
  background-color: #ff8d4e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#search::after {
  content: "⌕";
  position: absolute;
  left: var(--margin);
  color: white;
  font-size: 40px;
  width: var(--size-icon);
  height: var(--size-icon);
  display: flex;
  z-index: 2;
  justify-content: center;
  align-items: center;
}

.remove_search_text {
  position: absolute;
  right: 15px;
  cursor: pointer;
  font-weight: bold;
  color: #999;
}

#location-error {
  position: absolute;
  color: red;
  bottom: -20px;
  left: 0;
}

/* ... shortened for brevity ... */
@media all and (min-width: 768px) {
  button.gm-ui-hover-effect {
    top: 0 !important;
    right: 0 !important;
  }
}