.wm-chip-field {
  border: 1px solid #cfd8e3;
  border-radius: 0.6rem;
  min-height: 2.5rem;
  background: #fff;
  padding: 0.35rem 0.45rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.wm-chip-field:focus-within {
  border-color: #6d5dfc;
  box-shadow: 0 0 0 0.2rem rgba(109, 93, 252, 0.15);
}

.wm-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.wm-chip-editor {
  border: 0;
  outline: 0;
  min-width: 12ch;
  flex: 1 1 120px;
  padding: 0.15rem 0.1rem;
  background: transparent;
  font-size: 0.95rem;
}

.wm-chip-editor::placeholder {
  color: #97a6ba;
}

.wm-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #b8cbff;
  color: #23395d;
  padding: 0.2rem 0.55rem;
  font-size: 0.85rem;
  line-height: 1.2;
}

.wm-chip-remove {
  appearance: none;
  border: 0;
  background: transparent;
  color: #35557e;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.wm-chip-remove:hover {
  color: #0f2c52;
}

.wm-chip-msg {
  width: 100%;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #b54708;
}

