:host {
  display: inline-block;
}

.search-field {
  position: relative;

  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
  align-items: center;

  min-width: 220px;
  height: 34px;
  padding: 3px 6px;

  border: solid 2px var(--color-gray-eee);
  border-radius: 5px;

  .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .clear-icon {
    cursor: pointer;
    margin-top: 3px;
    opacity: 1;
    transition: opacity 0.2s ease;

    &:hover {
      opacity: 0.7;
    }
  }

  .search-input {
    flex: 1 1 auto;
    width: 0;
    border: none transparent;
    outline: none;

    &.input {
      background-color: var(--theme-hack-bg-color, var(--color-gray-fff));
    }

    &:focus {
      border: none transparent;
      outline: none;
    }
  }
}

.search-field.focused {
  border: 2px solid var(--accent-color-bg);
}
