
#contador {
    font: 800 30px system-ui;
    color:red;
}
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    background-color: blue;
    margin-bottom: 0px;
    font-family: system-ui,'Comic Sans MS', Comic Neue, sans-serif;
    font-size: 14px;
}

.nav-link {
    color: purple !important;
    font-weight: bold;
}

.dropdown-item {
    color: purple !important;
    font-weight: bold;
}

.centralizado {
    height: 0vh;
}

.caixa {
    background-color: #FFFFFF;
    font-size: 24px;
    border-radius: 30px;
    padding: 30px;
    margin: 15px 0;
    min-width: 300px;
    width:350px;
    box-shadow: 0 15px 30px rgb(255, 255, 255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .caixa:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
    }

.row {
    height: 180px;
}

@keyframes piscar {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.piscar {
    animation: piscar 2s infinite;
    color: red;
    font-weight: bold;
}

.dataTables_length select {
    padding: 6px 12px;
    border-radius: 6px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    font-weight: bold;
    color: #333;
    margin-left: 6px;
    color: black;
}

.dataTables_length {
    text-align: center; /* ou right/left */
    margin-bottom: 1rem;
    color: black;
    font-weight: bold;
}

.dataTables_filter input {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #f8f9fa;
    font-size: 14px;
    font-weight: bold;
    width: 250px;
    color: black;
}
/* Estiliza o texto da label ("Procurar:") */
.dataTables_filter label {
    font-weight: bold;
    color: black;
}
/* Organiza os controles em uma linha com espaçamento */
div.dataTables_wrapper div.dataTables_length,
div.dataTables_wrapper div.dataTables_filter {
    display: inline-block;
    margin-bottom: 1rem;
}

/* Alinha a barra de busca à direita */
div.dataTables_wrapper div.dataTables_filter {
    float: right;
}

/* Alinha o seletor de número de linhas à esquerda */
div.dataTables_wrapper div.dataTables_length {
    float: left;
}

.dataTables_info {
    font-weight: bold;
    color: #FFFFFF;
    text-align: left;
    margin-top: 10px;
    font-size: 0.9rem;
}

.dataTables_paginate {
    text-align: left;
    margin-top: 1px;
}

.dataTables_paginate .paginate_button {
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 4px;
    color: #000000;
    cursor: pointer;
    font-size: 0.9rem;
}

.dataTables_paginate .paginate_button.current {
    background-color: #000000;
    color: white #FFFFFF;
    border-color: #007bff;
    font-weight: bold;
}

.dataTables_paginate .paginate_button:hover {
    background-color: #e2e6ea;
}

