
/* Select2 搜索框最小化 */

/* 将搜索字段缩小到最小 */
.select2-container-multi .select2-choices .select2-search-field {
    width: auto !important;
    min-width: 30px !important; /* 最小宽度 */
    max-width: 80px !important; /* 最大宽度 */
    overflow-x: auto !important;
}

/* 确保输入框很小但仍可用 */
.select2-container-multi .select2-choices .select2-search-field input.select2-input {
    min-width: 20px !important;
    width: fit-content !important; /* 输入时扩大宽度 */
    padding: 0 2px !important; /* 减少内边距 */
}

/* 确保选项不被压缩 */
.select2-container-multi .select2-choices .select2-search-choice {
    flex-shrink: 0 !important;
}