/* Application styles */

/* Tagify: design system integration */
.tagify {
  --tags-border-color: #CECDC3;
  --tags-hover-border-color: #CECDC3;
  --tags-focus-border-color: #CECDC3;
  --tag-bg: #DAD8CE;
  --tag-hover: #CECDC3;
  display: flex;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 0.25rem;
  margin-top: 0.375rem;
}

/* Disable placeholder slide-out animation on focus */
.tagify__input::before,
.tagify__input:focus::before,
.tagify--empty .tagify__input::before {
  transition: none;
  animation: none;
  transform: none;
}

/* Fix CJK character height expansion */
.tagify__input,
.tagify__tag > div {
  line-height: 1.5;
}
