*{
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
}
.container{
	width: 100vw;
	height: 100vh;
	background-color: #1e1e1e;
}
.header{
	width: 100%;
	height: 35px;
	background-color: #3c3c3c;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cccccc;
}
.searchbar{
	width: 33%;
	height: 75%;
	min-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #616161;
	border-radius: 5px;
	background-color: #464646;
	font-family: sans-serif;
	font-size: 14px;
}
.editor{
	width: 100%;
	/* height: 96%; */
}
.footer{
	width: 100%;
	height: 20px;
	background-color: #007acc;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.footer .left{
	display: flex;
	align-items: center;
	justify-content: left;
	width: 40%;
	padding-left: 20px;
}

.footer .right{
	display: flex;
	align-items: center;
	justify-content: right;
	width: 40%;
	padding-right: 20px;
}

.footer .center{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20%;
}




.download, .copy{
	/* padding-left: 10px; */
	margin: 0px 10px;
	cursor: pointer;
}
.copied{
	display: none;
}
.language{
	margin: 0px 10px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.language select{
	outline: none;
	border: none;
	background-color: #007acc;
	padding: 0px 4px;
	height: 100%;
	color: white;
	-webkit-appearance: none;
}

.language select option {
	color: white;
}

.language select::-ms-expand {
    display: none;
}
/* html, body, #container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
} */

.indicator, .peerMode{
	width: 15px;
	height: 15px;
	background-color: rgb(204, 72, 72);
	border-radius: 50%;
	border: 1px solid #1e1e1e;
	margin: 0px 3px;
}

.peerMode{
	background-color: white;
}