html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/*MODAIS DE ALERTA*/
#modalAlerta {
    border: none;
    --bs-modal-width: 40rem !important;
    --bs-modal-heith: 35rem !important;
}

    #modalAlerta .img {
        position: center;
    }

    #modalAlerta .modal-content {
        border: none;
    }

    #modalAlerta .modal-header {
        background-color: #F0C35B;
    }

    #modalAlerta .modal-body {
        --bs-modal-width: 50rem !important;
    }

.infoModalSucesso {
    border: none;
    --bs-modal-width: 40rem !important;
    --bs-modal-heith: 35rem !important;
}

    .infoModalSucesso .img {
        position: center;
    }

    .infoModalSucesso .modal-content {
        border: none;
    }

    .infoModalSucesso .modal-header {
        background-color: #47C9A2;
    }

    .infoModalSucesso .modal-body {
        --bs-modal-width: 50rem !important;
    }

.infoModalErro {
    border: none;
    --bs-modal-width: 40rem !important;
    --bs-modal-heith: 35rem !important;
}

    .infoModalErro .img {
        position: center;
    }

    .infoModalErro .modal-content {
        border: none;
    }

    .infoModalErro .modal-header {
        background-color: #C95048;
    }

    .infoModalErro .modal-body {
        --bs-modal-width: 50rem !important;
    }

.infoModalLogin {
    border: none;
    --bs-modal-width: 5rem !important;
    --bs-modal-heith: 3rem !important;
}

.infoModalErro .img {
    position: center;
}

.infoModalErro .modal-content {
    border: none;
}

.infoModalErro .modal-header {
    background-color: #C95048;
}

.infoModalErro .modal-body {
    --bs-modal-width: 20rem !important;
}


/* Container principal do card */
.card-container {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    align-items: center;
    justify-content: center;
    max-width: 650px;
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 9999;
}

/* Estilos de cada bloco dentro do card */
.card-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: bold;
    font-size: 14px;
}

    /* Bloco 1 - Vermelho Claro */
    .card-item.empresas {
        background-color: #86b2f3;
        color: white;
    }

    /* Bloco 2 - Laranja Claro */
    .card-item.consultas {
        background-color: #f5a085;
        color: white;
    }

    /* Bloco 3 - Roxo Claro */
    .card-item.creditos {
        background-color: #8fd190;
        color: white;
    }

    /* Ícones */
    .card-item i {
        margin-right: 8px;
        font-size: 18px;
    }


/* Alterar a cor de fundo e a cor do texto do tooltip */
.tooltip {
    background-color: #99a9c6 !important; /* Cor de fundo do tooltip */
    border-radius: 8px; /* Bordas arredondadas */
    margin-top: 5px !important; /* Move o tooltip para baixo */
}

.tooltip-inner {
    color: white !important; /* Cor do texto */
    background-color: #99a9c6 !important; /* Cor de fundo */
    font-size: 14px; /* Tamanho do texto */
    font-weight: bold; /* Negrito */
}

/* Alterar a cor da seta do tooltip */
.tooltip-arrow::before {
    background-color: #99a9c600 !important; /* Cor da seta */
   
}
.tooltip-arrow {
    margin-top: -7px !important; /* Ajusta a seta para não parecer separada */
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #99a9c6!important;
}
.dt-scroll-head {
    width: 100% !important;
}

.dt-scroll-headInner {
    width: 100% !important;
}

.table .table-borderless .table-hover .table-striped .dataTable {
    width: 100% !important;
}

.table-borderless {
    width: 100% !important;
}

.table-hover {
    width: 100% !important;
}

.table-striped {
    width: 100% !important;
}

.dataTable {
    width: 100% !important;
}
/* Estiliza o modal de carregamento cobrindo toda a tela */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease-out;
}

/* Oculta o modal removendo-o do fluxo do DOM */
    .loading-overlay.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

