
*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    flex-direction: column;
    padding: 50px;
    gap: 50px;
}




input,select, button{
    height: 40px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}


button{
    background: #282929;
    color: white;
}

table{
    border-collapse: collapse;
    border: 1px solid rgba(0, 0, 0, 0.2);

    
}

th{
    background: rgb(40, 41, 41);
    color: white;
    border-color: #a8a8a8;
}

td,th{
    padding: 5px;
    width: 145px;
}

/* Linhas Alternadas (Striped) */
table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

/* Efeito Hover */
table tbody tr:hover {
  background-color: #e2faf1;
  
}
@media (hover: hover){
    button:hover{
        background: #157250;
        cursor: pointer;
    }
}

@media (max-width:1024px){
    
    body{
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
    }
    
    .box{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    select{
        background: white;
    }
    button{
        background:#282929;
        color: white;
    }
    button:active{
    background: #e2faf1;
    transform: scale(0.97);
}
}   