html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.nav-item:hover {
    background-color: lightgray;
}

.font-small {
    font-size: 0.8rem;
    /*font-weight: bold;*/
}

.font-verySmall {
    font-size: 0.6rem;
    /*font-weight: bold;*/
}


.font-emphasis {
    font-weight: bold;
    color: blue
}

.form-check-inline {
    display: inline-block;
    margin-right: 30px; /* Usado em Veiculo Cadastro para afastar os checkbox um do outro */
}

.custom-checkbox-label {
    margin: 0; /* Usado em conjunto com o de cima */
}

.notaRodape {
    font-size: 70%;
    font-weight: bold;
    color: blue;
}

.striped .row:nth-of-type(odd) div {
    background-color: antiquewhite;
    padding-top: 5px;
    padding-bottom: 5px;
}

.striped .row:nth-of-type(even) div {
    background: #FFFFFF;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid black; /* Apenas borda superior */
    border-bottom: 1px solid black; /* Apenas borda inferior */
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: antiquewhite; /* Define a cor das listras */
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #ffffff; /* Define a cor de fundo para as linhas pares */
}

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
}

.clicked-cell {
    background-color: #ffeb3b;
}

.nav-button {
    cursor: pointer;
}

.principal {
    width: 100%;
    height: var(--altura);
    padding-left: var(--margemesquerda);
    margin-bottom: var(--margeminferior);
    background-color: white;
    /*border: 1px solid black;*/
}

.textoCentral {
    font-size: var(--tamanhofonte);
    font-weight: bold;
    padding: 2px;
    text-align: center;
    /*    border: 1px solid black;*/
}

.textoCentro {
    text-align: center;
}


[data-tooltip] {
    position: relative;
    border-bottom: 1px dashed #000;
    cursor: help
}

    [data-tooltip]::after {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        content: attr(data-tooltip);
        left: 0;
        top: calc(100% + 10px);
        border-radius: 3px;
        box-shadow: 0 0 5px 2px rgba(100, 100, 100, 0.6);
        background-color: white;
        z-index: 10;
        padding: 8px;
        width: 100px;
        transform: translateY(-20px);
        transition: all 150ms cubic-bezier(.25, .8, .25, 1);
    }

    [data-tooltip]:hover::after {
        opacity: 1;
        transform: translateY(0);
        transition-duration: 300ms;
    }


.divBorder {
    padding: 20px;
    /*border: solid 1px;*/
    border-left: solid 1px;
    border-right: solid 1px;
    border-bottom: solid 1px;
    border-radius: 20px;
    box-shadow: 10px 10px 10px 5px black;
}

.textAreaBorder {
    padding: 20px;
    border-left: solid 1px;
    border-right: solid 1px;
    border-bottom: solid 1px;
    border-radius: 20px;
    box-shadow: 10px 10px 10px 5px black;
    width: 100%;
    height: 100%;
    resize: none;
}

.subTitulo {
    background-color: aqua;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 20px;
}


#calendar {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    background-color: lemonchiffon;
    border: 1px solid #ccc;
    padding-left: 1px;
    padding-right: 1px;
}

    #calendar th {
        padding-left: 7px;
        padding-right: 7px;
        align-items: center;
    }

    #calendar td {
        padding-left: 7px;
        padding-right: 7px;
        align-items: center;
    }

#monthYear {
    font-size: medium;
}

.is-invalid {
    border-color: #dc3545;
}



/* Tratamento do e-mail em telas pequenas, médias e grandes*/

.email-cell {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Telas maiores */
@media (min-width: 992px) {
    .email-cell {
        max-width: 300px;
    }
}

/* Telas médias */
@media (min-width: 768px) and (max-width: 991px) {
    .email-cell {
        max-width: 100px;
    }
}

/* Telas pequenas */
@media (max-width: 767px) {
    .email-cell {
        max-width: 50px;
    }
}


/* Tratamento da fonte em telas pequenas, médias e grandes*/
.font-responsive {
    font-size: 12px; /* tamanho padrão */
    font-weight: normal;
}

/* Telas médias (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
    .font-responsive {
        font-size: 14px;
    }
}

/* Telas grandes (desktops) */
@media (min-width: 992px) {
    .font-responsive {
        font-size: 16px;
    }
}

/* Telas pequenas (celulares) */
@media (max-width: 767px) {
    .font-responsive {
        font-size: 10px;
    }
}

.lista-ajuda ol li {
    margin-bottom: 10px;
}

