#lws-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

#lws-clear {
  border: none;
  font-size: 20px;
  color: #ff0000;
  cursor: pointer;
  transition: color 0.2s;
  background: #e8e7ed;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

#lws-clear:hover {
  color: #c00;
}

#lws-loader {
    display: flex;
    align-items: center;
}

.lws-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #eee;
  border-top-color: #007cba;
  border-radius: 50%;
  animation: lws-spin 1s linear infinite;
}
@keyframes lws-spin {
  to {
    transform: rotate(360deg);
  }
}

#lws-input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #e6e5eb;
    border-radius: 0px;
    border-top: none;
    border-right: none;
    border-left: none;
}

#lws-results {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 9999;
  top: 48px;
  margin-right: 15px;
  margin-left: 15px;
}
.lws-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lws-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.lws-item a {
  display: flex;
  align-items: center;
}

.lws-item img {
  width: 50px;
  height: 50px;
  margin-left: 8px;
  object-fit: cover;
}
.lws-title {
  flex: 1;
  font-size: 14px;
}
.lws-price {
  font-size: 13px;
  color: #2c2;
}
.lws-not-found {
  padding: 8px;
  margin: 0;
}
