/* SEARCH: white bar, radius 5px, Manrope, square button right, #537ceb, white icon */
.grsl-search {
  display: flex;
  align-items: stretch;
  gap: 0;
  font-family: 'Manrope', sans-serif;
  width: 100%;
  max-width: 100%;
}

.grsl-search__input {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 5px 0 0 5px;
  padding: 12px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  outline: none;
}

.grsl-search__input:focus {
  border-color: #537ceb;
}

.grsl-search__btn {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border: none;
  background: #537ceb;
  border-radius: 0 5px 5px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.grsl-search__icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/* MAP container */
.grsl-mapWrap { width: 100%; }
.grsl-map { width: 100%; height: 100%; border-radius: 10px; overflow: hidden; }

/* Results wrapper: real styling is scoped inline inside shortcode */
.grsl-results-wrapper { width: 100%; }


.grsl-more-btn {
  margin: 24px auto 0;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.grsl-more-btn:hover {
  border-color: #537ceb;
}


.grsl-item.is-selected .grsl-title-bar {
  background: #eb9343 !important;
}
