
.game-card{
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.tile{
    width:65px;
    height:65px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
    margin:5px;
    background:#ffffff;
    border:2px solid #dee2e6;
}

.blank-tile{
    background:#dc3545;
    color:white;
}

.correct{
    background:#198754 !important;
    color:white !important;
}

.wrong{
    background:#ffc107 !important;
    color:black !important;
}

input.tile-input{
    width:100%;
    height:100%;
    border:none;
    text-align:center;
    font-size:28px;
    font-weight:bold;
    background:transparent;
    color:white;
    text-transform:uppercase;
}

input.tile-input:focus{
    outline:none;
}

.set-box{
    border-radius:15px;
    transition:0.3s;
}

.set-box:hover{
    transform:scale(1.03);
}

.hidden{
    display:none;
}


.tile{
    width:65px;
    height:65px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
    margin:5px;
    background:#fff;
    border:2px solid #dee2e6;
}

.blank-tile{
    background:#dc3545 !important;
    color:white;
}

.correct{
    background:#198754 !important;
}

input.tile-input{
    width:100%;
    height:100%;
    border:none;
    background:transparent;
    color:white;
    text-align:center;
    font-size:28px;
    font-weight:bold;
    text-transform:uppercase;
}

input.tile-input:focus{
    outline:none;
}