#game-table {
    display:flex;
    align-items: center;
    justify-content: center;
}

#game-table td {
    width: 3em;
    height: 3em;  
    border: 1px solid #a04000;
}

#mode-setting {
    height: 2em;
    width: 6em;
    border-radius: 15px;
    background-color:#fa7f27;
    border: 2px solid #a04000;
    text-align: center;
    font-size: 22px;
    color: #fff;
    margin-right: 1.5em;
}

#gamebtn{
    height: 2em;
    width: 6em;
    border-radius: 15px;
    background-color:#fa7f27;
    border: 2px solid #a04000;
    text-align: center;
    font-size: 22px;
    color: #fff;
    
    margin-bottom: 1em;
}

.flagbtn{
    height: 2em;
    width: 6em;
    border-radius: 15px;
    background-color:#fa7f27;
    border: 2px solid #a04000;
    text-align: center;
    font-size: 22px;
    color: #fff;
    
    margin-bottom: 1em;
}

.flagbtnactive{
    height: 2em;
    width: 6em;
    border-radius: 15px;
    background-color:#8af757;
    border: 2px solid #833501c0;
    text-align: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 1em;
}



#wrapper {
    overflow: hidden; /* Added this to contain floated children */
    display: flex;
    justify-content: center;
}

#gameTimer {
    border-radius: 15px;
    width: 10.5em;
    height: 8em;
    border: 2px solid #a04000;
    background-color: #ee995d;
    padding-bottom: 20px;
    /* margin-top: 18px; */
    padding-top: 1.2em;
    margin-right: 20px;
    margin-bottom: 1em;
    text-align: center;
    float:left;
}

#gameTimer h4{ 
    padding: not;
    margin-bottom: 0rem;
}

#gameTimer span{
    margin-top: 0rem;
    font-size:2em;
}

#gameBombRemaining {
    border-radius: 15px;
    width: 10.5em;
    height: 8em;
    border: 2px solid #a04000;
    background-color: #ee995d;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    margin-bottom: 1em;
    text-align: center;
    float:left;
}

#gameBombRemaining h4{ 
    margin-top: 5px;
    margin-bottom: 0rem;
}

#gameBombRemaining span{
    margin-top: 0rem;
    font-size:2em;
}

.new-cell {
    background-color: #CCC;
    cursor: pointer;
}

.new-cell:hover{
    background-color: #ee995d;
}

.new-cell > .cell-content {
    display: none;
}