.theme-white .text-primary {
    color: #1CB3C8 !important;
}

.barra-rolagem-y {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
}

.barra-rolagem-y::-webkit-scrollbar {
    width: 8px;
}

.barra-rolagem-y::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.barra-rolagem-y::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.table-stick-container {
    max-height: 300px;
    overflow-y: auto;
}

.table-stick-container table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f8f9fa;
}

.box-buttons {
    position: fixed;
    top: 30%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.action-button {
    padding: 10px 15px;
    border-radius: 10px 0 0 10px;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    max-width: 240px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border: none;
}

.action-button i {
    float: right;
    font-size: 12px;
    margin-top: 6px;
}

.btn.action-button.active {
    background-color: #0062cc !important;
}
.btn.action-button:hover {
    background-color: #0062cc !important;
}

.dropdown-menu {
    max-height: 250px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu .dropdown-item {
    white-space: normal;
    word-break: break-word;
}

.dropdown-menu.no-scroll {
    max-height: none !important;
    overflow: visible !important;
    width: auto !important;
}

/* Selectize */
/* Dropdown container */
.selectize-dropdown {
    max-height: 250px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    box-sizing: border-box;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 2px;
    z-index: 9999;
    font-family: inherit;
}

/* Cada item (não selecionado) */
.selectize-dropdown-content > div[data-selectable] {
    font-size: 12px;
    color: #6c757d;
    padding: 10px 20px;
    white-space: normal !important;
    word-break: break-word;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Hover */
.selectize-dropdown-content > div[data-selectable]:hover {
    font-size: 12px;
    background-color: #f6f6f6;
    color: #1cB3C8;
}

/* Ativo/Selecionado */
.selectize-dropdown-content > div[data-selectable].active {
    background-color: #f6f6f6;
    color: #1cB3C8;
    font-size: 12px;
}

/* Itens selecionados (as "tags" dentro do input) */
.selectize-control.multi .item {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 20px;
    padding: 4px 10px;
    margin: 2px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

/* Botão de remover */
.selectize-control.multi .item .remove {
    margin-left: 6px;
    color: #fff;
    font-weight: bold;
    opacity: 0.8;
    cursor: pointer;
}
.selectize-control.multi .item .remove:hover {
    opacity: 1;
}

.badge-pink {
    background-color: #f587f1;
    color: white
}

.badge-pink[href]:hover, .badge-pink[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #f16deb;
}

.badge-grey {
    background-color: #bfbcbc;
    color: white
}

.btn-pink {
    color: #DFE2E2;
    background-color: #f587f1;
    border-color: #d991d5;
}

.btn-pink:hover {
    color: #DFE2E2;
    background-color: #ea45e4 !important;
    border-color: #738598;
}

.btn-pink:focus, .btn-pink.focus {
    box-shadow: 0 0 0 0.2rem rgba(231, 59, 236, 0.5);
}

.btn-pink.disabled, .btn-pink:disabled {
    color: #DFE2E2;
    background-color: #f587f1;
    border-color: #f587f1;
}

.btn-pink:not(:disabled):not(.disabled):active, .btn-pink:not(:disabled):not(.disabled).active,
.show > .btn-pink.dropdown-toggle {
    color: #DFE2E2;
    background-color: #738598;
    border-color: #ea45e4;
}

.btn-pink:not(:disabled):not(.disabled):active:focus, .btn-pink:not(:disabled):not(.disabled).active:focus,
.show > .btn-pink.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(230, 0, 255, 0.5);
}