body {
    background: aliceblue;
}
.navbar.navbar-dark.bg-dark a {
    color: white;
}
#wrapper {
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #262626;
}

#register {

}

#register table {
    margin: auto;
    width: 300px;
    border: solid 1px #ccc;
    padding: 10px;
    margin-top: 20%;
    background: #ccc;
}

button {
    padding: 7px 30px;
}

#message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: aquamarine;
    text-align: center;
    color:red;
}

#board {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    position: relative;
    margin: auto;
    background: white;
    overflow: hidden;
}

#game-canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 310px;
    bottom: 0;
}

#board-message {
    display: none;
    position: absolute;
    background: #7E757F;
    border: solid 2px white;
    padding: 20px;
    width: 400px;
    height: 100px;
    font-weight: 700;
    color: white;
    font-size: 14pt;
    z-index: 100;
    text-align: center;
}

#board-message-btn{
    padding: 2px 15px;
    border-radius: 5px;
    font-size: 12pt;
    line-height: 16pt;
    margin-top: 12px;
}

#panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    background: #7E757F;
}

.panel-header {
    position: relative;
    height: 32px;
}

.turn-icon {
    width: 40px;
    height: 40px;
}

#room {
    width: calc(100% - 60px);
    text-align: center;
    margin: 30px;
    border: solid 1px #C9BBCC;
}
#room td {
    width: 50%;
}
#room1-name, #room2-name {
    color: #A9FF90;
}
.player-name td {
    background: #262626;
    padding: 15px 0;
}
.room-turn {
    margin: 10px;
}

#timer1, #timer2 {
    padding: 10px 0;
}

#btnStart, #btnDrawRequest {
    width: 100%;
    margin-bottom: 10px;
}

.btn-player {
    width: 100%;
}

.control-group {
    margin: 20px 30px;
}

.room-controls {
    padding: 5px;
    border-bottom: solid 1px #888;
}

#btnClose, #btnToggleBoard {
    display: block;
    position: absolute;
    top: 4px;
    cursor: pointer;
    font-size: 13pt;
    background: #ccc;
    text-align: center;
    width: 26px;
    height: 26px;
    border-radius: 2px;
}

#btnClose {
    right: 4px;
}

#btnToggleBoard {
    left: 4px;
}

.console-wrapper {
    z-index: 1000;
    position: absolute;
    bottom: 0;
    right: 20px;
    border: solid 1px #ccc;
}

#console {
    overflow-y: scroll;
    height: 300px;
    width: 250px;
    padding: 0 10px;
    background: white;
}

.console-header {
    width: 250px;
    background: #ccc;
    padding: 3px 10px;
    position: relative;
}

.console-button {
    position: absolute;
    right: 3px;
    top: 3px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    text-align: center;
    background: #ddd;
}
#message-input {
    width: 100%;
    padding: 0 10px;
    border: solid 1px #ccc;
}

#login-form {
    width: 400px;
    border: solid 1px #ccc;
    padding: 30px;
    margin: auto;
    margin-top: 100px;
}

.btn-login {
    width: 100%;
}

#guest-login-form {
    width: 400px;
    margin: 10px auto;
    text-align: center;
}
.score {
    font-size: 30pt;
    color: #FCE9FF;
}
.menu-item {
    margin-left: 20px;
}

#btnShare {
    width: 100%;
}

.set-ended-wrapper {
    text-align: center;
    width: 500px;
    max-width: 100%;
    margin: 20px auto;
    background: #262626;
    color: white;
    padding: 30px;
    border-radius: 16px;
}

.set-ended-wrapper h2 {
    border-bottom: solid 1px white;
    padding-bottom: 15px;
}

.set-ended-wrapper table {
    width: 100%;
}

.ended-name, .ended-score {
    font-size: 25pt;
    width: 50%;
}
.online {
    color: #28a745;
}
.player-email {
    font-style: italic;
    color: #7E757F;
}
.concurrent-users {
    background: #ccc;
    padding: 0 10px;
    font-style: italic;
}