.search-options-container {
  position: relative;
  height: 36px;
  width: 265px;
}

.search-options-background {
  position: absolute; 
  color: #D9D9D9;
  border-radius: 10px;
}

.keyword-search-bar,
.suggested-search-bar {
  display: none;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.keyword-search-bar {
  /* border: 1px solid red; */
}

.keyword-search-bar.active,
.suggested-search-bar.active {
  display: flex;
}

.keyword-search-button,
.suggested-search-button {
  color: #D9D9D9;
  position: absolute;
  border-radius: 10px 10px 0 0;
  top: 0;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.keyword-search-button {
  left: 0;
  width: 124px;
}

.suggested-search-button {
  right: 0;
  width: 141px; 
}

.keyword-search-button.active,
.suggested-search-button.active {
  color: var(--theme-color);
}

.keyword-search-button span,
.suggested-search-button span {
  position: absolute;
  color: black;
  font-size: 13px;
  white-space: nowrap;
  user-select: none;
}
.keyword-search-button-text.active,
.suggested-search-button-text.active {
  color: white;
  background-color: transparent;
}

.search-button {
  /* background-color: #872E6F; */
  /* border: 1px solid orange; */
  background-color: var(--theme-color);
  border: none;
  border-radius: 10px;
  height: 57px;
  width: 132px;
  /* button text */
  color: #ffffff;
  font-family: 'JD Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  /* button text end */
}

.search-input {
  border: 1px solid #E0E0E0;
  border-radius: 0 10px 10px 10px;
  height: 57px;
  width: 100%;
  padding-left: 25px;
  /* search input text */
  color: #000000;
  font-family: 'JD Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  /* search input text end */
}

/* Suggested Search Dropdown */
.suggested-search-bar {
  /* position: relative; */
  /* border: 1px solid red; */
}

.custom-select {
  border: 1px solid #E0E0E0;
  position: relative;
  border-radius: 0 10px 10px 10px;
  height: 57px;
  width: 100%;
  /* border: 1px solid orange; */
}

#dropdown-button {
  background-color: white;
  /* border: 1px solid yellow; */
  border-radius: 0 10px 10px 10px;
  cursor: pointer;
  padding-left: 25px;
  /* Check if these clash with other settings */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Button Size */
  width: 100%;
  height: 100%;
  /* Text */
  color: rgb(102, 102, 102);
  font-family: 'JD Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

.custom-select button {
  border: none;
}

.custom-select ul {
  /* border: 1px solid green; */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-height: 200px;
  overflow-y: auto;
  /* animation */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.select-dropdown::-webkit-scrollbar {
  width: 7px;
}
.select-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}
.select-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.select-dropdown li {
  /* border: 1px solid blue; */
  padding: 10px;
  padding-left: 25px;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Highlight the selected option */
.select-dropdown li.selected {
  background-color: #f2f2f2;
  border-radius: 4px;
  font-weight: bold;
}

.select-dropdown li:hover,
.select-dropdown li:focus {
  background-color: #f2f2f2;
  border-radius: 4px;
}

.select-dropdown.hidden {
  opacity: 0;
  visibility: hidden;
}

.suggested-search-arrow {
  color: #000000;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
  height: 9.75px;
  width: 16.29px;
  margin-right: 10px;
}

.suggested-search-arrow.rotate {
  transform: rotate(-180deg);
}
