/* Estilos do Select2 conforme o form-control do Bootstrap 4 */
.select2-container--default .select2-selection--single {
    display: block;
    width: 100% !important;
    height: calc(2.25rem + 2px); /* Alinhamento com o form-control */
    padding: .375rem .75rem; /* Mesma quantidade de padding */
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Cor da borda do form-control */
    border-radius: .25rem;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Estilo do texto dentro da caixa de sele��o */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    font-size: 1rem;
    padding: 0;
    color: #495057;
}

/* Estilo para a seta do dropdown */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(2.25rem + 2px);
    top: 0;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Seta do dropdown */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: block;
    width: 0;
    height: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid #495057; /* Cor da seta igual ao texto */
}

/*footer*/
.main-content-footer {
    margin-left: 255px;
}

@media (max-width: 1024px) {
    .main-content-footer {
        margin-left: 0;
    }
}