:root {
    --bs-primary-text-emphasis: #5c3a16;
    --bs-primary-bg-subtle: #fae9d7;
}

#botaoTopo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;    
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

.menu_user:hover {
    background-color: #e69138;
    color: #fff;
}

#loadingoverlay {
    position: absolute;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.8);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 35px;
    height: 35px;
    border: 3px #ddd solid;
    border-top: 4px #e69138 solid;
    border-radius: 50%;
    animation: sp-anime 0.7s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 576px) {
    .table {
        font-size: 0.75rem;
    }
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bs-primary-bg-subtle);
    --bs-tooltip-color: var(--bs-primary-text-emphasis);
    --bs-tooltip-max-width: 100vw;
    --bs-tooltip-font-size: .7rem;
}
.tooltip.show {
    opacity: .95;
}

.card-header-sticky {
    position: sticky;
    top: 4.375rem;
    z-index: 1020;
}