/*main styles*/

*{
    box-sizing:border-box;
}

body {
    background-color: #1d1d1d;
    color: white;
    padding: 0;
    margin: 0;
}

.color-light{
    color:#75767c
}

.small-bar {
    background-color: #6a7496;
    padding: 2px 20px;
}

.small-bar-item{
    color:white;
    font-size:12px;
}

.fLeft{
    float:left;
}
.fRight{
    float:right;
}

.bar {
    background-color: #3a456b;
    padding: 8px 20px;
}

.p-n{
    padding:1px 5px;
}

.game-title{
    width: 120px;
    text-align:center;
    font-size:18px;
    float:left;
}

.main{
    text-align:center;
    position:relative;
    height:100vh;
}

#gameContainer{
    padding:10px;
}

#startGameButton {
    color: white;
    background-color: transparent;
    border:1px solid white;
    padding: 2px 10px;
    border-radius: 3px;
    text-decoration: none;
    margin-left:10px;
}

#startGameButton :hover 
{
    border-color:#3a456b;
    background-color:#3a456b;
}

.game-main {
    margin: auto;
    text-align: center;
}

table{
    margin:auto;
    border-collapse:separate;
}

td {
    font-size: 12px;
    font-weight: bolder;
    padding: 6px 3px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 1px;
    text-align: center;
    color: white;
}


.option{
    padding:2px 3px;
	float:left;
}
.option>span{
    text-align:center;
    height:100%;
}

.option>input{
    width:50px;
    border:1px solid #6c80c7;
    border-radius: 2px;
    color:white;
    background-color:#4e5d90;
    height:100%;
}

.clearfix::after{
    content:'';
    clear:both;
    display:block;
}


.tile-mark {
    background-color: #8f904e;
}
.tile-cover {
    background-color: #3a456b;
    color: #3a456b;
}

.tile-cover:hover {
    background-color: #6a7496;
    color: #6a7496;
}

.tile-mine {
    background-color: rgb(224, 29, 29);
}
.tile-empty {
    background-color: #4e5d90;
    color: #4e5d90;
}
.tile-reveal {
    background-color: #3b4f93;
}
.tile-dead-mine {
    background-color: rgb(237, 25, 25);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
    user-select: none; 
}