@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
    /* color: rgb(209, 9, 17); */
}

body {
    height: 100vh;
    width: auto;

}

main {
    width: auto;
    height: 90vh;
    /* background-color: rgba(242, 242, 247,1) */

}

#titulo {
    position: relative;
    background-color: rgb(116, 33, 24);
    width: 80%;
    height: 100%;
    z-index: 2;
}


header {
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    width: 100%;
    height: 7%;
    /* border-bottom: 2px solid rgb(209, 9, 17); */
    background-color: rgba(116, 33, 24, 1);
    box-shadow: 2px 1px 20px 1px gainsboro;

    /*(127, 24, 16);*/
}

footer {
    position: absolute;
    background-color: rgba(116, 33, 24, 1);

    width: 100%;
    height: auto;
}

#container-logo {
    width: auto;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    z-index: 1;
    /* position: relative; */
    margin-left: 10px;
    font-size: xx-large;
    text-align: center;

}

#logo {
    width: 120px;
    height: 120px;

    /* border: 1px solid rgb(209, 9, 17);
    box-shadow: 1px 1px 5px 0.5px rgb(127, 24, 16);
     */
}

#container-logo div {
    position: absolute;

}

article {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
    height: 100%;
    box-shadow: 2px 2px 20px -5px gainsboro;
    border-radius: 5px;
}

#arquivo {
    display: none;
}


#container-envio {

    /* border:1px solid rgba(116,33,24,1); */
    background-color: rgba(255, 255, 255, 1);
}

#container-envio:hover {

    /* border:1px solid rgba(116,33,24,1); */
    background-color: rgba(197, 195, 195,0.5);
    cursor: pointer;
}

#campoArquivo:focus{
    box-shadow: none;
    border-color: rgb(116, 33, 24, 1);
}




.conteudo,
.dados_arquivo {
    position: relative;
    top: 10px;
    margin: 0 auto;
    width: 30%;
}

.dados_arquivo_detalhe {
    position: relative;
    height: 40%;
    width: 100%;
}

.tab-dados-arquivo {
    position: relative;
    margin: 0 auto;
    font-size:larger;
    width: 100%;
    visibility: hidden;
}

.tab-dados-arquivo td:last-child {

    text-align: right;
}

.tb {
    position: relative;
    margin: 0 auto;
    width: 95%;
    visibility: hidden;

}

#spinner{
    visibility:hidden;
}

.tb thead th{
    position: sticky;
    top:0;
}

.tb thead tr th{
    background-color: rgba(116, 33, 24, 1);
    color: white;    

}

.dados_arquivo_detalhe {
    max-height: 100%;
    overflow-y: auto;

}