body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
	font-family: Consolas, monospace;
	overflow: hidden;
}

#ConsoleArea {
    background-color: #0C0C0C;
    color: #cccccc;
    border: none;
    width: 100vw;
    height: calc(100vh - 29px);
    resize: none;
    outline: none;
	overflow: auto;
	font-size: 16px;
	font-family: Consolas, monospace;
}

#ConsoleArea::selection {
    background-color: #f3f3f3;
    color: black;
}

#toolbar {
    background-color: white;
    color: #cccccc;
    border: none;
    display: flex;
    resize: none;
    outline: none;
	overflow: hidden;
	width: 100%;
    align-items: center;
	height: 29px;
	padding-left: 3px;
	box-sizing: border-box;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

#blockImage {
    width: 20px;
    height: 17px;
    margin-right: 5px;
	resize: none;
	pointer-events: none;
}

#blockText {
	font-size: 0.9em;
    color: #999999;
    font-family:  'Segoe UI', Arial, sans-serif;
	resize: none;
}

