/*CUSTOM STYLES*/
.no-border {
    border: none !important;
}


.hidden-component {
    display: none;
}

.text-semibold {
    font-weight: 600 !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.nowrap {
    white-space: normal;
    display: inline-flex;
}

/* .nav-link.active{
    color: var(--primary) !important;
} */
div.dataTables_wrapper div.dataTables_processing {
    box-shadow: 1rem 1rem 10rem 100rem rgba(0, 0, 0, .15);
}

.hidden {
    display: none !important;
}

.td-actions {
    max-width: 10%;
    white-space: nowrap;
}

.td-actions a {
    margin-right: 15px;
}

.td-actions a:last-child {
    margin-right: 0;
}

@media (min-width: 920px) {
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.sidebar-wrapper .sidebar-menu>.nav-item>.nav-link.active:not(:hover) {
    background-color: rgba(65, 242, 111, 0.7);
}


/* #f3f4f6 */

/* Select2 dentro de modais */
.select2-container {
    z-index: 9999 !important;
}

.select2-dropdown {
    z-index: 10000 !important;
}

/* Garantir que o Select2 tenha a altura correta */
.select2-container--default .select2-selection--single {
    height: 38px;
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    right: 6px;
}

/* Estilo para quando o Select2 está aberto */
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Garantir que o dropdown do Select2 apareça sobre o modal */
.select2-container--open .select2-dropdown {
    z-index: 10001 !important;
}

/* Ajuste para o campo de busca dentro do Select2 */
.select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}

/* Estilo para as opções */
.select2-results__option {
    padding: 6px 12px;
}

.select2-results__option--highlighted {
    background-color: #007bff !important;
    color: white !important;
}

/* Estilo para optgroups (separadores de UCs) */
.select2-results__group {
    font-weight: bold;
    color: #495057;
    background-color: #f8f9fa;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-top: 2px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

/* Primeira opção após o optgroup */
.select2-results__options[aria-expanded]>.select2-results__option:first-child {
    border-top: none;
}