@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');


*{
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
    max-width: 100vw;
    
}
body#log{
    background-image: url('../imagens/torriton.jpg');
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top ;
}
body{
    background-color: rgb(245, 245, 245);
}
body a{
    color: black;
}
/*----------------CORPO-----------------------------*/

div.corpo{
    background-color: white;
    box-shadow: 0px 0px 30px 0px rgba(204, 204, 204, 0.151);   
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    border-radius: 15px;
    width: 900px;
}
div.corpo img{
    width: 150px;
    margin: 20px;
    border-radius: 20px;
}
div.corpo img:hover{
    cursor: pointer;
    width: 155px;
    box-shadow: 0px 0px 14px 7px rgba(85, 85, 85, 0.151);    
}
div.corpo#log{
    background-color: rgba(116, 116, 116, 0.678);
    width: 400px;
    position: absolute;
    color: white;
    text-shadow: 0px 0px 5px rgb(0, 0, 0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
div.corpo table{
    margin: auto;
}
div.corpo input{
    margin: 7px 0px;
    border-radius: 7px;
    height: 30px;
    border: 1px solid black;
    box-shadow: 3px -3px 6px 0px rgba(0, 0, 0, 0.11);
}
/*-----------------CORPO-----------------------------*/
/*-----------------MEUS PEDIDOS-----------------------------*/
div.meusPedidos{
    background-color: rgba(224, 224, 224, 0.486);
    margin: auto;
    width: 95%;
    height: 50vh;
    padding: 20px;
    border-radius: 7px;
    overflow-y: auto;
}
table.meusPedidos{
    margin: auto;
    background-color: rgba(199, 199, 199, 0.486);
    width: 1000px;
    max-width: 97%;
    border-collapse: collapse;
}
table.meusPedidos th, table.meusPedidos td{
    text-align: center;
    border: 1px solid black;
}
table.meusPedidos tr:nth-child(even){
    background-color: white;
}
/*-----------------MEUS PEDIDOS-----------------------------*/

/*---------------ALERTAS-------------------------------*/
div#msgOk{
    width: 70%;
    padding: 10px 20px;
    margin: 10px auto;
    background-color: rgb(152, 255, 152);
    color: rgba(0, 121, 0, 0.88);
    border-radius: 20px;
    text-align: left;
    font-size: 1.4em;
}
div#msgError{
    width: 70%;
    padding: 10px 20px;
    margin: 10px auto;
    background-color: rgb(255, 146, 146);
    color: rgba(122, 0, 0, 0.88);
    border-radius: 20px;
    text-align: left;
    font-size: 1.4em;
}


div#msgInfo{
    width: 70%;
    padding: 10px 20px;
    margin: 10px auto;
    background-color: rgb(255, 239, 146);
    color: rgba(121, 103, 0, 0.88);
    border-radius: 20px;
    text-align: left;
    font-size: 1.4em;
}
/*---------------ALERTAS-------------------------------*/

/*----------------opçoes do header-----------*/
header{
    width: 100%;
}
table.header{
   margin: auto;
   text-align: center;
   max-width: 50%;
}
table.header td{
    padding: 6px;
}
table.header input.opcoes{
    border: 1px solid rgba(146, 146, 146, 0.205);
    border-radius: 7px;
    background: none;
}
table.header input.opcoes:hover{
    background-color: rgba(235, 235, 235, 0.404);
    border: 1px solid rgba(146, 146, 146, 0.808);
}
/*----------------opçoes do header-----------*/

/*----------------MODAL-----------*/

div.modal{
    width: 100%;
    height: 100%;
    background-color: rgba(90, 90, 90, 0.753);
    display: none;
}
div.modalArea{
    background-color: white;
    width: 900px;
    max-width: 98%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    display: block;
}
div.sair-modal{
    text-align: right;
}
div.sair-modal i{
    background-color: rgba(128, 128, 128, 0.589);
    padding: 7px;
    border-radius: 20px;
    color: white;
}
div.sair-modal i:hover{
    background-color: grey;
    cursor: pointer;
}
div.modalForm{
    display: none;
    padding: 20px;
}
div.modalForm *{
    margin: auto;
    text-align: center;
}
/*----------------MODAL-----------*/

footer{
    position: fixed;
    bottom: 0%;
    right: 0%;
}
#filtro {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px; /* Cria um espaço de 20px entre cada filtro */
    padding: 15px;
    align-items: flex-end; /* Alinha os filtros pela base */
    justify-content: center;
    text-align: center;
}

.filtro-options {
    width: 200px;
    display: flex;
    flex-direction: column;
}

/* Deixa o select e o botão ocupando a largura total do 200px */
.select-estilo, .btn-enviar {
    width: 100%;
    margin-top: 5px;
    text-align: center;
}