:root {
	--highlight-background: #1E90FF;
	--highlight-text: #FFFFFF;
	--lowlight-background: #EFEFEF;
	--border-color: #D4D4D4;
}

body {
	font-family: sans-serif;
	padding: 0px;
	margin: 0px;
}

.container {
	padding: 10px;
}

pre {
    white-space: pre-wrap;       
    word-wrap: break-word;
}

.variable {
	font-style: italic;
}

#outerSettingsContainer {
	padding:20px;
	background-color: #1E90FF80;
	color: #000;
	overflow: hidden;
}

#codeContainer {
	max-height: 400px;
	overflow-y: auto;
	border: 1px solid var(--border-color);
}

button {
	background-color: var(--highlight-background);
	color: var(--highlight-text);
	padding: 7px;
	border: none;
	border-radius:5px;
}

#title {
	font-size:150%;
	padding:20px;
	text-align: center;
	background-color: var(--highlight-background);
	color: var(--highlight-text);
}

.autocomplete-items {
  position: absolute;
  border: 1px solid rgb(201, 201, 201);
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 42px;
  left: 0;
  right: 0;
  width: 360px;
}
.autocomplete-items div {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 2px;
  padding-right: 2px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid rgb(201, 201, 201);
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color:#eee;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: #fff  !important;
  color: #eee;
}

.autocomplete-label {
	font-size: 13px;
	font-weight: bold;
}

.entitydiv {
	position: relative;
	display: block;
}

table {
	border-collapse: collapse;
}

th {
	line-height: 1.6;
	font-size: 14px;
	font-weight: normal;
	background-color: rgb(234, 236, 240);
	text-align: left;
}

tr {
	border: solid 1px #ddd;
}

td {
	position: relative;
	padding: 5px;
	width: 360px;
}

select {
	background-color: #fff;
	border: 1px solid #a2a9b1;
	border-radius: 2px;
	padding: 5px;
	margin: 2px;
}

input {
	position: relative;
	background-color: #fff;
	border: 1px solid #a2a9b1;
	border-radius: 2px;
	padding: 5px;
	margin: 2px;
}

span {
	font-size: 13px;
}
.heading {
	padding: 5px;
	background-color: rgb(234, 236, 240);
}

.description {
	font-size: 13px;
}

#settingscontainer {
	float: left;
	width: 66%;
}

#resultscontainer {
	float: left;
	width: 30%;
}

