body {
    font-family: "roboto", sans-serif;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 25px;
    background-color: #002800;
}
    .logo {
        width: 120px;
    }

    .tituloCabecalho {
        font-size: 40px;
        font-weight: bold;
        text-transform: uppercase;
        color: white;
    }


.principal {
    padding: 5px;
}
    .form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 1340px;
        margin-bottom: 40px;
        background-color: #bbcab4;
    }
        .tituloPrincipal {
            display: flex;
            justify-content: center;
            width: 90%;
            margin: 8px auto;
            font-size: 50px;
            border-bottom: 1px solid #e8ede6;
        }

        .conteudoForm {
            display: flex;
            justify-content: space-around;
            padding: 8px;
        }
            .grupo {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 33%;
            }
                .grupo label {
                    margin-right: 5px;
                    font-size: 20px;
                }

                .grupo input {
                    width: 230px;
                    height: 30px;
                    padding: 8px;
                    border-radius: 5px;
                    border: solid #767b74 1px
                }

        .enviar {
            width: 100px;
            height: 30px;
            margin: 20px 8px 8px 15px;
            border-radius: 5px;
            font-size: 15px;
            transition: .6s;
            border: none;
            color: #ffffff;
            background-color: #507643;
        }
            .enviar:hover {
                transform: scale(1.09);
            }

    .campoBusca {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: flex-end;
        margin: 8px 2px;
        background-color: #ffffff;
    }
        .material-symbols-outlined {
            height: 100%;
            border: none;
            cursor: pointer;
            background-color: #ffffff;
        }

        #filtraPaciente {
            height: 30px;
            padding: 5px;
            border: none;
            border-left: 1px solid #cccccc;
        }

    .tabelaPaciente {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 1340px;
        align-items: center;
        padding: 16px;
        background-color: #325727;
    }
        table {
            width: 100%;
            table-layout: fixed;
            background-color: #ffffff;
        }
            td, th {
                padding: 8px;
                border: 1px solid #001600;
                text-align: center;
            }

            td {
                color: #000000;
            }

            th {
                font-weight: bold;
                background-color: #637a59;
                color: #062700;
            }
    .import-error {
        display: flex;
        align-items: center;
        width: 1300px;
    }
        .btnImport {
            width: 38%;
        }
            .import {
                align-self: flex-start;
                width: 100px;
                height: 30px;
                margin: 20px 8px 8px 15px;
                border-radius: 5px;
                font-size: 15px;
                transition: .6s;
                border: none;
                color: #000000;
                background-color: #dee5da;
            }
                .import:hover {
                    transform: scale(1.09);
                }
        .msgImport {
            padding-top: 15px;
        }        
            .msgError {

                font-size: 20px;
                font-weight: bold;
                color: white;
            }   

    

    .rodape {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px;
        background-color: #002800;
    }

    .copyright {
        margin-top: 3px;
        font-size: 11px;
        color: #ffffff;
    }

/*------------------------------------------------------------------------------------------------*/
/* Estilização vinda dos eventos JS */
/*------------------------------------------------------------------------------------------------*/

.paciente-Invalido {
    background-color: #ff3a26;
}

.campoErro {
    display: flex;
    justify-content: center;
    align-items: center;    
}

    .erroMensagem {
        display: inline-block;
        margin: 0px 20px 8px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: red;
    }

.fadeOut {
    opacity: 0;
    transition: 0.5s;
}

.invisivel {
    display: none;
}