
.field {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

#startgame {
    margin-top: 8px;
    background-color: #dfe9f1;
    font-size: 30px;
    float: left;
    cursor: pointer;
    border: 1px solid black;
    padding: 5px;
}

#startgame:hover {
    background-color: #3477B5;
    color: white;
}

#stats {
    float: left;
    width: 400px;
}

#gamesNumberOfFieldsText, #gamesStartedText, #gamesWonText {
    width: 150px;
    float: left;
}

#gameTable {
    margin-top: 15px;
    background-color: #EAEAEA;
    clear: both;
    border: 1px solid #9F9F9F;
    width: 600px;
    border-spacing: 10px;
}
#gameTable td {
    margin: 5px;
    padding: 5px;
}

#stat {
    display: none;
}

.active {
    background-color: black;
    color: white;
    cursor: pointer;
}

