body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	background-color: white;
	padding: 20px;
	margin: 0;
}

canvas {
	veritcal-align: top;
}

#container {
	display: grid;
	grid-template-columns: auto 400px 840px 475px auto;
	grid-template-rows: auto;
}

#navbar {
	overflow: hidden;
	background-color: #2A3439;
	height: 75px;
	overflow: visible;
}

#nav {
	text-align: center;
	padding: 8px;
}

#draw_area {
	width: 806px;
	height: 610px;
	background-color: #808080;
	margin: auto;
	text-align: center;
	padding: 5px;
	border: 1px;
	border-style: solid;
	grid-column: 3;
	grid-row: 1;
}

#console_area {
	width: 450px;
	height: 220px;
	border: 1px;
	border-style: solid;
	background-color: #D3D3D3;
	grid-column: 4;
	grid-row: 1;
	overflow: scroll;
	overflow-x: hidden;
	text-align: center;
}

#display {
	width: 395px;
	height: 215px;
	display: inline-block;
}

#output {
	font-family: Courier New;
	text-align: left;
}

#msg {
	font-family: Courier New;
	text-align: left;
}

.button {
	background-color: #D4D4D4;
	border: none;
	color: black;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
}

.button:hover {
	background-color: #ECECEC;
}

#startPoint:hover {
	background-color: #009000;
}

#endPoint:hover {
	background-color: #AD000C;
}

#wall:hover {
	background-color: #808080;
}

.dropbtn {
	background-color: #D4D4D4;
	color: black;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: #ECECEC;
} 