.webhook-action-search {
  max-width: 30rem;
  margin: 0 0 1.1rem;
}

.webhook-action-search > label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
}

.webhook-action-search-field {
  position: relative;
}

.webhook-action-search-icon,
.webhook-action-search-clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.webhook-action-search-icon {
  left: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 1.15rem;
  pointer-events: none;
}

.webhook-action-search input {
  box-sizing: border-box;
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: none;
  background: #151515;
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.webhook-action-search input:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.webhook-action-search input:focus {
  border-color: #ff0033;
  background: #181818;
  box-shadow: 0 0 0 3px rgba(255, 0, 51, 0.12);
}

.webhook-action-search input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.webhook-action-search input::-webkit-search-cancel-button {
  display: none;
}

.webhook-action-search-clear {
  right: 0.45rem;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  place-items: center;
}

.webhook-action-search-clear[hidden] {
  display: none;
}

.webhook-action-search-clear:hover,
.webhook-action-search-clear:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.webhook-action-search-clear .material-icons {
  font-size: 1.05rem;
}

.webhook-action-search-status {
  min-height: 1rem;
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.webhook-action-search.has-no-results .webhook-action-search-status {
  color: #ff718d;
}

.webhook-search-hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .webhook-action-search {
    max-width: none;
  }
}
