body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: sans-serif;
    background-color: #333;
    color: #fff;
    user-select: none;
}

label {
    display: block;
    font-size: 12px;
    margin: 12px 0 4px 0;
}

.container {
    background-color: #111;
    box-shadow: 4px 4px 32px #000;
    border-radius: 8px;
    padding: 12px 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, -50%);
}

#status {
    position: absolute;
    bottom: 8px;
    color: #999;
    font-size: 12px;
    text-align: left;
}

#fireButton {
    width: 90px;
    margin-left: 20px;
}

#leftButton {
    width: 90px;
}

#rightButton {
    width: 90px;
}

.controlsButton {
    opacity: 75%;
    align-items: center;
    background-color: #000;
    border: 2px solid #666;
    border-radius: 6px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    justify-content: center;
    padding: 3px 8px 3px 8px;
    margin-bottom: 20px;
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    vertical-align: baseline;
    width: 90px;
    height: 40px;
}

.controlsButton:hover,
.adminButton:focus {
    opacity: 1;
    border-color: #fff;
    color: #fff;
}

.controlsButton:active {
    opacity: 1;
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: #000;
    transform: translateY(3px);
}

.actionButton {
    border: none;
    border-radius: 6px;
    box-shadow: 2px 2px 3px #111;
    box-sizing: border-box;
    color: #fff;
    font-size: 50px;
    background-color: #222;
    cursor: pointer;
    padding: 3px 8px 3px 8px;
    transition: all 100ms;
    touch-action: manipulation;
    height: 90px;
    touch-action: manipulation;
    user-select: none;
}

.actionButton:hover,
.actionButton:focus {
    opacity: 1;
    border-color: #fff;
}

.actionButton:active {
    opacity: 1;
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    transform: scale(0.75);
}

#commsInfoDiv {
    position: fixed;
    bottom: 6px;
    width: 100%;
    text-align: center;
    color: #555;
    font-size: 12px;
    text-shadow: 0 0 2px black;
    cursor: pointer;
    user-select: none;
}

#commsInfoDiv #commsInfo {
    text-decoration: none;
}

#commsInfoDiv #commsClientCounts {
    margin-left: 4px;
    color: #555;
    text-decoration: none;
}