.container {
  max-width: 548px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.autocomplete {
  position: absolute;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  z-index: 10;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.noResultsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #757575;
  gap: 8px;
}

.noResults {
  text-align: center;
  color: #757575;
}

.suggestionCategory {
  padding: 8px 0;
}

.categoryTitle {
  padding: 8px 16px;
  color: #757575;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.autocompleteItem {
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background-color 0.2s ease;
}

.autocompleteItem:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.itemContent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.itemIcon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f5f5f5;
}

.itemDetails {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.itemPrimary {
  font-weight: 500;
}


@media (min-width: 600px) {
  .container {
    width: 80%;
  }
}
@media (min-width: 900px) {
  .container {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 40%;
  }
}

.tabs {
  display: flex;
  min-height: 36px;
}

.tabs :global(.MuiTab-root) {
  color: #000;
  min-width: auto;
  background-color: #eeeeee;
  margin: 0 2px;
  border-radius: 4px 4px 0 0;
  padding: 0px 24px;
  font-weight: 400;
  font-size: 14px;
  opacity: 1;
  height: 36px;
  min-height: 36px;
  text-transform: capitalize;
}

.tabs :global(.Mui-selected) {
  background-color: #00adb5 !important;
  min-height: 36px;
  color: #eee;
  padding: 0px 24px;
  font-weight: 400;
  font-size: 14px;
  height: 36px;
  text-transform: capitalize;
}

.paper {
  width: 547px;
  height: 61px;
  display: flex;
  align-items: center;
  padding-right: 7px !important;
}

.inputField {
  background-color: white;
  color: black;
}

/* Remove border in all states */
.inputField :global(.MuiOutlinedInput-notchedOutline) {
  border: none !important;
}

.inputField:hover :global(.MuiOutlinedInput-notchedOutline),
.inputField.Mui-focused :global(.MuiOutlinedInput-notchedOutline) {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.searchButton {
  background-color: #00adb5;
  color: white;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease;
}

.searchButton:hover {
  background-color: #00969d;
}

.autocomplete {
  margin-top: 4px;
  position: absolute;
  width: 100%;
  z-index: 1000;
  left: 0;
  top: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.autocompleteItem {
  padding: 4px 10px;
  cursor: pointer;
}

.autocompleteItem:hover {
  background-color: #00adb5;
  color: white;
}

.noResults {
  padding: 4px 10px;
}

@media screen and (min-width: 320px) and (max-width: 547px) {
  .paper {
    width: 100% !important;
  }
  .tabs :global(.MuiTab-root) {
    padding: 0px 11px !important;
    font-size: 12px;
  }
  .container {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
