.style-search {
  position: relative;
  margin-top: 1.25rem;
}

.style-search label {
  display: block;
  margin-bottom: .55rem;
  font-size: .875rem;
  font-weight: 650;
}

.style-search-row {
  display: flex;
  gap: .55rem;
}

.style-search-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .7rem .8rem;
  font-size: 1rem;
}

.style-search-row button {
  border: 0;
  border-radius: 6px;
  padding: .7rem 1rem;
  background: var(--teal);
  color: white;
  font-size: .875rem;
  white-space: nowrap;
}

#style-suggestions {
  position: absolute;
  z-index: 10;
  top: 4.75rem;
  right: 0;
  left: 0;
  max-height: 16rem;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(21, 45, 55, .14);
}

#style-suggestions button {
  display: block;
  width: 100%;
  padding: .7rem .85rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  text-align: left;
  color: var(--ink);
  font-size: .875rem;
}

#style-suggestions button:hover,
#style-suggestions button:focus-visible {
  background: #edf8f7;
}

#style-suggestions small {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
}

.search-hint {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
}

.base-export {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal);
  font-size: .875rem;
  text-underline-offset: 3px;
}

.drop-zone > span:last-child {
  font-size: .8125rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 420px) {
  .style-search-row {
    flex-direction: column;
  }

  #style-suggestions {
    top: 7.7rem;
  }
}
