.search--suggestions-box {
  position: fixed;
  min-width: fit-content;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  border-radius: var(--input-radius);
  box-shadow: 0 1px 1px 0 #C9D2D8;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  border: solid 1px var(--neutral-200);
  padding: 0.25rem;

  li {
    list-style: none;
    padding: .5rem .75rem;
    border-radius: inherit;
    width: 100%;
    font-size: var(--rem-13);
    color: var(--text-body);

    &:not([data-empty="true"]):hover {
      cursor: pointer;
      background-color: var(--surface-secondary);
    }

    span {
      font-size: var(--rem-13);
      color: var(--text-body);
    }
  }
}

.search--create-list-item {
  width: 100%;

  &:has(button) {
    padding: 0;
  }

  button.paddingless.secondary.thin {
    outline: none;
    width: 100%;
    padding: 0.5rem 0.75rem;
    justify-content: flex-start;
    font-size: var(--rem-15);
  }
}

.search--with-suggestions {
  width: 100%;
  
  .dropdowns--main-container {
    width: 100%;
  }
}