.search-section {
  display: flex;
  gap: 8px;
  padding: 8px;
  width: 100%;
  justify-content: flex-end;
}

.search-section-container {
  align-items: center;
  background: var(--light-grey-color);
  border-radius: 4px;
  display: flex;
  max-height: 44px;
  overflow: visible;
  position: relative;
}

.search-section-container p {
  margin: 0;
}

#search-engine-container {
  width: 100%;
}

.search-section-button {
  background: none;
  border: none;
  height: 44px;
  width: 44px;
}

.search-type-selector {
  background: var(--light-grey-color);
  border: none;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px var(--grey-color);
  cursor: pointer;
  left: 0;
  padding: 8px;
  position: absolute;
  top: 48px;
  width: 100%;
  z-index: 100;
}

.search-type-label {
  color: var(--grey-color);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 5px;
}

.search-type-selector optgroup {
  font-weight: normal;
}

.search-type-selector option {
  background: none;
  font-weight: bold;
  padding-bottom: .5em;
  padding-top: .5em;
}

.search-type-selector option:checked {
  color: var(--blue-color);
}

.search-type-selector option:hover {
  background-color: var(--emphasized-light-grey-color);
}

.search-type-selector option:checked::after {
  content: ' ✓';
}

.report-type-selector {
  background: var(--light-grey-color);
  border: none;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px var(--grey-color);
  cursor: pointer;
  left: 0;
  padding: 8px;
  position: absolute;
  top: 48px;
  width: 100%;
  z-index: 100;
}

.report-type-selector optgroup {
  font-weight: normal;
}

.report-type-selector option {
  background: none;
  font-weight: bold;
  padding-bottom: .5em;
  padding-top: .5em;
}

.report-type-selector option:hover {
  background-color: var(--emphasized-light-grey-color);
}

.search-engine-input-wrapper {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
}

.search-engine-input-wrapper .tt-menu {
  background: var(--light-grey-color);
  border: none;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0px var(--grey-color);
  margin-top: 15px;
  padding: 0;
}

.search-engine-input-wrapper .tt-hint {
  margin: 0 !important;
  padding: 1px 2px !important;
}

.search-engine-input-wrapper .tt-suggestion:hover {
  background-color: var(--emphasized-light-grey-color);
  color: unset;
}

.search-engine-input {
  background: none;
  border: none;
  outline: none;
  text-transform: none;
  width: 100%;
  padding-right: 30px;
}

.search-engine-input-clear {
  background: none;
  border: none;
  padding: 0px;
}

#process-filters-container {
  min-width: 134px;
}
