.hh-button-search {
  position: relative;
  display: inline-block;
}

.hh-button-search__button {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
}

.hh-button-search__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  width: 280px;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hh-button-search--active .hh-button-search__dropdown {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.hh-button-search__input-field {
  flex-grow: 1;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
}

.hh-button-search__input-field:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 1px #0073aa;
}

button.hh-button-search__submit {
  background: none !important;
  border: none !important;
  padding: 0 10px 0 10px !important;
  margin: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-button-search__submit svg {
  width: 20px;
  height: 20px;
}

.hh-button-search__submit svg path {
  fill: #555;
  stroke: #555;
}