body {
	margin: 0;
	padding: 0;
	background-color: #2e2e2e;
	font-family: monospace;
	color: #d6d6d6;
	height: 100vh;
	overflow: hidden;
}

.container {
	display: flex;
	height: 100vh;
	width: 100vw;
}

.sidebar {
	width: 250px;
	background-color: #252526;
	border-right: 1px solid #3e3e3e;
	display: flex;
	flex-direction: column;
}

.output {
	width: 100%;
	height: 275px;
	background-color: #0a0a0a;
	border-top: 1px solid #3e3e3e;
	display: flex;
	flex-direction: column;
}

.output-header {
	width: 100%;
	height: 20px;
	font-size: 15px;
	text-indent: 7px;
	align-content: center;
	justify-content: left;
	align-self: flex-start;
	background-color: #252526;
	padding-bottom: 2px;
	border-bottom: 1px solid #3e3e3e;
}

.output-text {
	width: 100%;
	height: 250px;
	background-color: #0c0c0c;
	display: flex;
	flex-direction: row;
	overflow-y: auto;
}

.sidebar-header {
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #3e3e3e;
}

.sidebar-header h2 {
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	color: #bbbbbb;
}

.icon-btn {
	background: none;
	border: none;
	color: #d6d6d6;
	cursor: pointer;
	font-size: 18px;
	padding: 0 5px;
}

.icon-btn:hover {
	color: #fff;
}

.delete-btn {
	background: none;
	border: none;
	color: #888;
	cursor: pointer;
	font-size: 14px;
	padding: 0 5px;
}

.delete-btn:hover {
	color: #f44336;
}

.project-list {
	flex: 1;
	overflow-y: auto;
	padding: 10px 0;
}

.project-item {
	margin-bottom: 5px;
}

.project-header {
	padding: 5px 10px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}

.project-header:hover {
	background-color: #2a2d2e;
}

.file-list {
	margin-left: 15px;
}

.file-item {
	padding: 3px 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 13px;
}

.file-item:hover {
	background-color: #37373d;
}

.file-item.active {
	background-color: #37373d;
	color: #fff;
}

.main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}

.top-bar {
	height: 40px;
	background-color: #2e2e2e;
	display: flex;
	align-items: center;
	padding: 0 10px;
	border-bottom: 1px solid #3e3e3e;
}

#editor {
	flex: 1;
	width: 100%;
}

.button-class {
	background-color: #819653;
	border: none;
	color: #d6d6d6;
	padding: 5px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	border-radius: 3px;
	margin-right: 10px;
}

.button-class:hover {
	background-color: #6f8245;
}

.sync-status {
	margin-left: auto;
	font-size: 12px;
	color: #888;
}

.user-indicator {
	position: fixed;
	top: 10px;
	right: 10px;
	background: #333;
	color: white;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	z-index: 100;
	max-height: 200px;
	overflow-y: auto;
}

.user-item {
	margin: 2px 0;
	padding: 2px 5px;
}

.remote-cursor {
	position: absolute;
	border-left: 2px solid;
	height: 1.2em;
	pointer-events: none;
	z-index: 10;

}