.search-box-component {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 38px;
  background: #FFFFFF;
  border: 1px solid #ECECED;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 8px;
}

.search-box-component:hover {
  border-color: #B8B9BC;
}

.search-box-component:focus-within {
  border-color: #2188D9;
  box-shadow: 0 0 2px 2px rgba(33, 136, 217, 0.3);
}

.search-box-component:focus-within input {
  caret-color: #2188D9;
}

.search-box-component input {
  border: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  width: 100%;
  color: #060C1B;
  outline: none;
}

.search-box-component input::placeholder {
  color: #A0A0A0;
}

.search-box-component .mat-icon {
  color: #828282;
  margin-bottom: 5px;
}

.search-box-component .mat-icon.close-icon {
  cursor: pointer;
  user-select: none;
}