/* Select2 容器样式 */
.select2-container {
    width: 100% !important;
}

/* 选择框样式 */
.select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    height: 44px;
}

/* 选择框中的文本样式 */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
    line-height: 44px;
    padding-left: 1rem;
}

/* 选择框中的箭头样式 */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

/* 下拉面板样式 */
.select2-dropdown {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* 搜索框样式 */
.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 4px;
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

/* 选项样式 */
.select2-container--default .select2-results__option {
    padding: 8px 1rem;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* 选项hover样式 */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* 选中的选项样式 */
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 禁用状态样式 */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        height: 40px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 40px;
        font-size: 14px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px;
    }
    
    .select2-container--default .select2-results__option {
        padding: 6px 1rem;
        font-size: 14px;
    }
} 