::-webkit-scrollbar-track {
    background-color: #f4f4f4;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: black;
}

.wrapper{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    box-sizing: border-box;
}

table{
    border-radius: 10px;
    overflow: hidden;
    font-size: 16px;
    font-family: Nunito, sans-serif;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

td, th{
    padding: 10px;
    text-align: center;
}

tr:nth-child(odd){
    background: #eee;
}

tr:nth-child(odd) input{
    border: 1px solid white;
}

input{
    border: 1px solid #eee;
    padding: 10px;
    background: transparent;
    text-align: center;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

input.melhor{
    border: 2px solid #9dd69d;
}

input:focus{
    outline: 0;
}