*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background: #83ffe4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

h1{
    font-weight: 600;
}

.sudoku-container{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

table{
    border-collapse: collapse;
    border: 4px solid #000;
}

.cell{
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    border: 1px solid #999;
    transition: all 0.3s ease-in-out;
}

table tr:nth-child(3n) td,
table tr:nth-child(3n+3) td{
    border-bottom: 2px solid #000;
}

table td:nth-child(3n){
    border-right: 2px solid #000;
}

input{
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

button{
    margin-top: 20px;
    padding: 20px 38px;
    font-size: 20px;
    background-color: #039be5;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

button:hover{
    background-color: #0056b3;
}

.solved{
    background-color: #88ff00;
    transition: all 0.2s ease-in-out;
}