/* Global Select2 styling fix to match Bootstrap 4 input height and alignment */
.select2-container .select2-selection--single {
    height: 38px !important; /* Match Bootstrap 4 input height */
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important; /* Reset line-height to allow flexbox centering */
    padding-left: 12px !important; /* Match Bootstrap padding */
    padding-right: 20px !important; /* Space for arrow */
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important; /* Slightly less than container */
    position: absolute !important;
    top: 1px !important;
    right: 1px !important;
    width: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
