.game {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1%;
}

.statsTable, .controls {
    width: initial;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffe700a8;
    padding: 5px;
    margin-top: 26px;
    margin-bottom: 50px;
    border-radius: 6px;
}

.controls {
    max-width: 806px;
    background-color: rgba(0, 255, 247, 0.66);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    padding: 21px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 25%;
    border-radius: 10px;
}

.controls > *:not(:last-child) {
    margin-bottom: 15px;
}

.controls > *:last-child {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.controls button {
    font-size: 21px;
    margin-right: 9px;
    border-radius: 6px;
    padding: 8px;
}

.controls select {
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 9px;
    padding-top: 13px;
    border-radius: 7px;
    margin-right: 5px;
}

.statsTable.lost {
    background-color: #ff000d8a;
}

.statsTable.win {
    background-color: #00ff49a8;
}

.createGameLink {
    background-color: rgba(72, 255, 0, 0.7);
}

.statsTable tbody tr {
    font-weight: 700;
    font-size: 25px;
}

.statsTable tbody .value {
    background-color: #78daf138;
    padding: 3px;
    border-radius: 6px;
    color: #525f5d;
    font-size: 24px;
    font-weight: 700;
    padding-top: 0px;
    padding-bottom: 0px;
}

.game .cell {
    width: 71px;
    height: 71px;
    text-align: center;
    box-sizing: border-box;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}

.game .cell.selected {
    border: 5px solid #000000;
}

.game .cell.in-place {
    cursor: not-allowed;
    border: 5px solid #d3dcd0;
    border-style: inset;
}

.enableNumbersContainer{
    width: 35px;
    height: 17px;
    padding: 21px;
    min-width: 180px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.pointsContainer{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
