/* Unify Select2 single/multiple with form fields: height, border, radius, focus */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0.3rem;
  background-color: #fff;
  min-height: 2.75rem; /* ~44px，接近 input/input-bordered 的高度 */
}

/* Single mode height & padding */
.select2-container--default .select2-selection--single {
  height: 2.75rem;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.75rem;
  padding-left: 0.75rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 0.5rem;
}

/* Multiple mode chips & paddings */
.select2-container--default .select2-selection--multiple {
  padding: 0.25rem 0.5rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove  {
  background: #e5e7eb;
  border: 0;
  color: #111827;
  border-radius: 9999px;
  padding: 0px 5px;
}

button.select2-selection__choice__remove {
  border-right: none;
}

/* Focus ring (接近 Tailwind/Daisy 的主色高亮) */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
  outline: none;
}
