html, body {
    height: 100%; /* Garante que o body ocupe a altura total da janela */
}

.scrollit {
    overflow: auto;
    max-height: 900px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.navbar {
    background: #f8f9fa; /* Cor de fundo clara para destacar */
    border-radius: 8px; /* Bordas arredondadas suaves */
}

.navbar-brand {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fonte moderna */
}

.btn-outline-primary {
    transition: all 0.3s ease; /* Efeito de transição suave */
}

.btn-outline-primary:hover {
    background-color: #0d6efd; /* Cor azul ao passar o mouse */
    color: white;
    border-color: #0d6efd; /* Cor do botão consistente */
}

body {
    background-color: #efefef;
}

.container {
    max-width: 1000px; /* Ajuste conforme necessário */
    margin: 0 auto;
    border-radius: 3PX;
    padding: 10px;
}

table {
    font-size: 12px;
}

footer {
    background-color: #f8f9fa;
    /* border-radius: 8px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
footer a:hover {
    color: #007bff;
    text-decoration: underline;
}


.cookie-consent-banner {
    z-index: 99999
}
