:root {
    --neutro: #eceaea;
    --preto: #000000;
    --azul-claro:#F2FBFD;
    --azul-escuro: #161650;
    --amarelo-claro: #FFEFA2;
    --laranja-claro: #FFB84E;
    --fonte-titulo: "Noto Sans", sans-serif;
    --fonte-texto: "Nunito Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
}

/*Layout*/

nav {
    display: flex;
    justify-content: space-between;
    
    height: 5%;
    border-bottom: 1px #ccc;
    background-color: #fff;
}
.imagem-cet {
    width: 90px;
    padding: 1%;
    margin-left: 30px;
}
.botao-layout-sair {
    padding: 10px 15px;
    margin: 30px 50px;
    background-color: var(--laranja-claro);
    color: var(--preto);
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.botao-layout-sair:hover {
    background-color: var(--amarelo-claro);
}

.main {
    height: 90%;
    background-color: var(--neutro);
    overflow-y: auto;
}
.main-index {
    height: 85%;
}


/*Página-login*/
.container {
    display: flex;
    justify-content: center;
    justify-items: center;
    padding: 20px;
    
    
}

.container-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding:30px;
    margin: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background-color: #fff;
    width: 50%;
    height: 20%;
}

.titulo-login {
    font-family: var(--fonte-titulo);
    color: var(--azul-escuro);
    font-size:22px;
}

.subtitulo-login {
    font-family: var(--fonte-texto);
    font-size: 16px;
}
.comentario-login {
    font-family: var(--fonte-texto);
    font-size: 13px;
    font-weight: 300;
}
.div-form {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.label-form {
    font-family: var(--fonte-texto);
    font-weight: 800;
    font-size: 15px;
}

.input-form {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.container-botao {
    display: flex;
    justify-content: center;
}

.botao-form {
    
    min-width: 30px;
    padding: 10px;
    background-color: var(--laranja-claro);
    color: var(--preto);
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.botao-form:hover {
    background-color: var(--amarelo-claro);
}

/*Pagina-index*/
.container-index-titulo {
    background-color: var(--azul-escuro);
    height: 30px;
    color: var(--amarelo-claro);
   padding: 2px 0px 0px 40px;
}
.container-index-titulo-texto {
    width:100%;
    font-size: 18px;
    align-content: center;
}
.container-index-pesquisa {
    background-color: var(--azul-claro);
    height: 60px;
    padding: 20px 0 20px 40px;
    font-size: 16px;
    font-family: var(--fonte-texto);
    font-weight:600;
}
.select-pesquisa {
    height: 30px;
    border-radius:10px;
    font-weight:bold;
    margin:0 30px 0 0;
}
.botao-pesquisa{
    padding:5px;
    height:30px;
}
.imagem-pesquisa-botao {
    width: 15px;
    height: 15px;
}
.index-sem-procedimento{
    padding: 30px 0 0 30px;
    
}

.container-index-tabela {
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
}

.table {
    border-collapse: collapse; /* Remove o espaçamento entre as células */
    width: 100%;
    font-size: 12px;
}
thead {
    width: 90%;
    background-color: #f2f2f2; /* Cor de fundo do cabeçalho (opcional) */
}
tr:hover{
    background-color:var(--neutro);
}
th {
    padding: 3px 10px 3px 0;
    text-align: left;
    font-size:13px;
}
.th-center {
    text-align: center;
}
.th-border {
    border-top: 1px solid #ddd;
    font-size:14px;
}

td {
    text-align: center;
    padding: 3px 10px 3px 0;
    margin: 0; 
}
.td-left {
    text-align: left;
}





/*Footer*/
.footer {
    background-color: var(--azul-escuro);
    height: 5%%;
    width:100%;
    color: var(--amarelo-claro) ;
    position: fixed;
    bottom: 0;
}
.footer-index {
    height: 5%;
}

@media (max-width:1200px) {
    .imagem-cet {
        width: 70px;
        padding: 1%;
        margin-left: 30px;
    }

    nav {
        height: 5%;
        border-bottom: 1px #ccc;
        background-color: #fff;
    }

    body {
        width: 100%;
    }

    main {
        height: 85%;
        width: 100%;
        /* height: 70vh; */
        background-color: var(--neutro);
    }

    .container {
        display: flex;
        justify-content: center;
        justify-items: center;
        padding: 10px 5px 5px 5px;
    }

    .container-login {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 50px 10px 30px 10px;
        margin: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 30px;
        background-color: #fff;
        width: 70%;
        height: 60%;
    }

    .titulo-login {
        font-family: var(--fonte-titulo);
        color: var(--azul-escuro);
    }

    .subtitulo-login {
        font-family: var(--fonte-texto);
    }

    .label-form {
        font-family: var(--fonte-texto);
        font-weight: 800;
        font-size: 18px;
    }

    .input-form {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    .container-botao {
        display: flex;
        justify-content: center;
        justify-items: center;
    }

    .botao-form {
        /* width: 30%; */
        min-width: 30px;
        padding: 10px;
        background-color: var(--laranja-claro);
        color: var(--preto);
        font-weight: bold;
        font-size: 16px;
        border: none;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }
    .container-index-pesquisa {
        background-color: var(--azul-claro);
        height: 60px;
        padding: 10px 0 60px 40px;
        font-size: 16px;
        font-family: var(--fonte-texto);
    }
}
