* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

body {
    min-width: 100vw;
    min-height: 100vh;
}

body {
	background: 
		linear-gradient(45deg, rgb(0, 0, 255), transparent),
		repeating-linear-gradient(45deg, rgb(0, 0, 255) 0%, rgb(0, 0, 255) 5%, transparent 5%, transparent 10%),
		rgb(118, 118, 255) repeating-linear-gradient(-45deg, rgba(0, 0, 255, .5) 0%, rgba(0, 0, 255, .5) 5%, transparent 5%, transparent 10%);
	display: flex;
	flex-direction: row;
	overflow: hidden;
}

#canvas {
	height: 100vh;
	outline: none;
}

#playerList{
	font-size: 24px;
	overflow-y: scroll;
	margin: 10px;
	overflow: auto;
}

#playerList::-webkit-scrollbar{
	width: 0 !important;
}

#playerList>li{
	border-radius: 5px;
	background-color: rgba(50, 50, 50, 0.8);
}

.player{
	cursor: pointer;
	margin: 5px;
}

.playing:before{
	content: "🔴 ";
}

.free:before{
	content: "🔵 ";
}

.challenging:before{
	content: "🟢 ";
}

.challenged:before{
	content: "🟡 ";
}

.me:before{
	content: "⚫️ ";
}

#playerList{
	height: 100vh;
	max-height: 100vh;
	margin: 0px 10px;
}

ol {
	list-style: none;
	padding: 0;
}

#all{
	display: block;
	bottom: 0;
}

#header{
	height: 10vh;
	max-height: 10vh;
	display: flex;
	align-items: baseline;
	justify-content: center;
}

div#fullcontainer {
	display: flex;
}

div#rightside {
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	height: 100vh;
	overflow: hidden;
}

#chatmsgcontainer {
	height: 92vh;
}

#chatmsg {
	height: 100%;
	width: 100%;
	background-color: #3a3a3a;
	font-size: 3vh;
    line-height: 1.5;
    padding: 5px 8px;
	color: #ccc;
	overflow-y: scroll;
}

#chatinputcontainer {
	display: flex;
}

#chatinput {
	height: 100%;
	width: 100%;
	background-color: #181818;
	border: 0;
	padding: 6px;
	color: #ccc;
	flex: 1;
	font-size: 18px;
	resize: none;
	outline: none;
	line-height: 1.25;
}

.msg {
	color: #aaa;
}

.name {
	font-weight: bold;
}

ol {
	margin-block-start: 0;
	margin-block-end: 0;
}