.folder-search-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 2px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  transition: color 0.15s ease;
}

.folder-search-bar:hover {
  background: transparent;
  border-color: transparent;
}

.folder-search-bar:focus-within {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.folder-search-icon {
  width: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8294b6;
  font-size: 0;
  line-height: 1;
  pointer-events: none;
  opacity: 0.84;
  --project-search-icon-size: 12px;
}

.folder-search-input {
  appearance: none;
  -webkit-appearance: none;
  flex: 1;
  width: auto;
  height: 32px;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #eef4ff;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.folder-search-input::placeholder {
  color: #8b9dc0;
  opacity: 1;
}

.folder-search-input:focus {
  outline: none;
  border: 0 !important;
  box-shadow: none !important;
}

.folder-search-clear {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #8498bc;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: color 0.15s ease, opacity 0.15s ease;
  flex: 0 0 auto;
}

.folder-search-bar.has-value .folder-search-clear {
  opacity: 0.78;
  pointer-events: auto;
}

.folder-search-clear:hover,
.folder-search-clear:focus,
.folder-search-clear:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: none;
  color: #d7e4fb;
}
