/* CORREÇÃO DEFINITIVA PARA ALINHAMENTO DO SELECT2 */
.select2-container--default .select2-selection--single {
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    background-color: var(--inputBackground) !important;
    border: 2px solid var(--inputBorder) !important;
    border-radius: var(--inputRadius) !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bodyTextColor) !important;
    line-height: 1 !important;
    padding-left: 12px !important;
    padding-right: 30px !important;
    width: 100% !important;
    position: relative;
    top: 0 !important;
    transform: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    width: 30px !important;
    right: 5px !important;
    top: 0 !important;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: static !important;
    margin: 0 !important;
    border-color: var(--bodyTextColor) transparent transparent transparent !important;
    border-width: 6px 6px 0 6px !important;
}

/* Correção para o dropdown aberto */
.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--bodyTextColor) transparent !important;
    border-width: 0 6px 6px 6px !important;
    margin-top: -3px !important;
}
