﻿/* Container principal do Select2 */
.select2-container {
    margin: 0 !important;
    font-family: 'Poppins-Regular' !important;
    width: 100% !important;
}

    /* Campo de seleção (quando fechado) */
    .select2-container .select2-selection--single {
        height: 38px !important;
        border: solid 2px #EBF2EA !important;
        background-color: #FFFFFF !important;
        border-radius: 6px !important;
        font-size: 14px !important;
        font-family: 'Poppins-Regular' !important;
    }

        /* Texto exibido no Select2 */
        .select2-container .select2-selection--single .select2-selection__rendered {
            line-height: 38px !important;
            padding-left: 12px !important;
            color: #333 !important;
        }

        /* Seta do dropdown */
        .select2-container .select2-selection--single .select2-selection__arrow {
            height: 38px !important;
            right: 10px !important;
        }

            .select2-container .select2-selection--single .select2-selection__arrow b {
                border-color: #333 transparent transparent transparent !important;
            }

/* Dropdown aberto */
.select2-container--open .select2-selection--single {
    border-color: #3B8233 !important;
    outline: none !important;
}

    /* Seta quando o dropdown está aberto */
    .select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: transparent transparent #333 transparent !important;
    }

/* Dropdown (lista de opções) */
.select2-dropdown {
    border: solid 2px #EBF2EA !important;
    border-radius: 6px !important;
    font-family: 'Poppins-Regular' !important;
}

/* Opções dentro do dropdown */
.select2-results__option {
    padding: 8px 12px !important;
    font-size: 14px !important;
}

/* Opção destacada (hover) */
.select2-results__option--highlighted {
    background-color: #3B8233 !important;
    color: white !important;
}

/* Opção selecionada */
.select2-results__option[aria-selected=true] {
    background-color: #f0f0f0 !important;
    color: #333 !important;
}

/* Campo de busca dentro do dropdown (se habilitado) */
.select2-search__field {
    border: solid 1px #EBF2EA !important;
    border-radius: 4px !important;
    padding: 6px !important;
    font-family: 'Poppins-Regular' !important;
}
