#board {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    grid-template-rows: repeat(6, 50px);
    gap: 5px;
    margin: 20px auto;
}

.cell {
    width: 50px;
    height: 50px;
    background-color: #0073e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #004a99;
}

.cell.red {
    background-color: red;
}

.cell.yellow {
    background-color: yellow;
}

#status {
    text-align: center;
    font-size: 1.2em;
    margin: 10px 0;
}

.cell.win {
    /*background-color: #32cd32;*/
    border: 3px solid black;
}
