html, body {
	margin: 0;
	height: 100%;
	width: 100%;
}

* {
	box-sizing: border-box;
}

a {
	color: red;
}

#page-grid {
	display: grid;
	grid-template-areas: 'page-title page-title'
		'input-container input-container' 'buttons buttons'
		'xml-result-title html-result-title'
		'xml-result-editor html-result-editor'
		'graphic-result-title graphic-result-title'
		'graphic-result graphic-result';
	grid-row-gap: 10px;
	grid-column-gap: 5px;
	grid-template-columns: 45% auto;
}

#page-title {
	grid-area: page-title;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	margin: 1em;
}

#buttons {
	grid-area: buttons;
	margin-bottom: 1em;
}

#view {
	float: left;
	margin-left: 5em;
	color: red;
}

#clear {
	clear: left;
}

#submit {
	padding: 0.5em;
}

#help {
	float: right;
	margin-right: 10em;
}

#xml-result-title {
	grid-area: xml-result-title;
	text-align: center;
}

#html-result-title {
	grid-area: html-result-title;
	text-align: center;
}

#xml-result-editor {
	grid-area: xml-result-editor;
	height: 150px;
	resize: vertical;
	margin-left: 0.5em;
}

#html-result-editor {
	grid-area: html-result-editor;
	height: 150px;
	resize: vertical;
	margin-right: 0.5em;
}

#graphic-result-title {
	grid-area: graphic-result-title;
	display: none;
	text-align: center;
	color: blue;
	font-weight: bold;
	margin: 0.5em;
}

#graphic-result {
	grid-area: graphic-result;
	display: none;
	color: blue;
	margin-bottom: 2em;
}

#input-container {
	grid-area: input-container;
	width: 80%;
	text-align: center;
	margin: auto;
	border: 1px solid black;
	overflow-x: auto;
	text-align: center;
}

#input {
	font-size: 1em;
	padding-right: 5px;
	padding-left: 5px;
	border: 1px solid red;
	border-right: 1px solid red;
	border-top: none;
	border-bottom: none;
	width: 100%;
	text-align: center;
}

#resizable-input {
	overflow-x: hidden;
	resize: horizontal;
	display: inline-block;
	padding: 0;
	margin: 0;
	white-space: nowrap;
	width: 100%;
}

#gpsv-footer {
	position: fixed;
	bottom: 0em;
	width: 100%;
	height: 1em;
	text-align: center;
	margin: 0.5em;
}

.title {
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: 1em;
}

.help-list {
	display: inline-block;
	text-align: left;
}

.important {
	color: red;
	text-align: center;
	padding: 0.5em;
}

span.important {
	border: 1pt solid red;
}

.tooltip {
	position: absolute;
	visibility: hidden;
	border: 0px solid Black;
	margin-left: 5pt;
	padding: 0px;
	font-family: Arial, helvetica, sans-serif;
	font-size: 9pt;
	background-color: #FFFFCC;
}

#text-editor {
	height: 100%;
	width: 100%;
	border: 1pt solid black;
	resize: vertical;
    margin-right: 2em;
	resize: vertical;
}

div#gpsv-footer>a {
	color: red;
}