/* CSS RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ACTUAL CSS */

body {
    background-color: #bfbfbf;
	font-family: 'Courier New', Courier, monospace;
	font-size: 12px;
}

table {
    margin: 10px auto 0 auto;
}

td {
	padding: 5px;
}

#canvas {
	filter: drop-shadow(0 4px 2px #888);
}

#code {
    width: 276px; 
    height: 369px; 
    line-height: 100%;
	padding: 6px;
	border: 1px solid #d6d6d6;
    resize: none;
    outline: none;
}

td {
	/* This fixes a spacing issue between the toolbar and the code area. */
    line-height: 0;
}

.hotkeys {
	text-align: center;
	margin-top: 20px;
}

.hotkey {
	background-color: #d0d0d0;
	padding: 5px 8px;
	border-radius: 5px;
	margin-left: 3px;
	margin-right: 3px;
}

.hotkey strong {
	font-weight: 900;
}

.hotkey-disabled {
	background-color: #c3c3c3 !important;
	color: #8f8f8f !important;
}

#coordinate {
	display: inline-block;
	width: 57px;
}
