body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #333;
    color: #fff;
    font-size: 12px;
}

h1 {
    font-size: 20px;
    margin: 0px 0 6px 0;
    padding: 0;
}

label {
    display: block;
    font-weight: bold;
    margin: 6px 0 2px 0;
}

input[type="file"] {
    display: none;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
}

.container {
    background-color: #111;
    box-shadow: 4px 4px 32px #000;
    border-radius: 8px;
    padding: 12px 12px;
    width: 300px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

#roomId {
    font-size: 20px;
    letter-spacing: 0.15em;
}

#notepad {
    width: 290px;
    border: none;
    height: 190px;
    margin-bottom: 35px;
    color: #999;
    background-color: #222;
    padding: 4px;
    font-family: monospace;
}




.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;
    padding: 3px 8px 3px 8px;
    margin-bottom: 6px;
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    touch-action: manipulation;
    width: auto;
    height: 30px;
}

.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);
}

#shareQrCode {
    float: left;
    width: 100px;
    height: 100px;
    background-color: #fff;
    padding: 4px;
    border-radius: 6px;
    margin-right: 12px;
    margin-bottom: 10px;
}

#commsInfoDiv {
    position: absolute;
    width: inherit;
    bottom: 10px;
    text-align: center;
    color: #555;
    font-family: monospace;
    text-shadow: 0 0 2px black;
    user-select: none;
}

#status {
    position: absolute;
    bottom: 30px;
    color: #999;
}

#chunkStatus {
    font-size: 8px;
}

#commsInfoDiv #commsInfo {
    text-decoration: none;
    cursor: pointer;
}

#commsInfoDiv #commsClientCounts {
    margin-left: 4px;
    color: #555;
    text-decoration: none;
    cursor: pointer;
}