/* app.css
	Primary:   #2e3b41 / #cfcfcf
	Secondary: #404a52 / #cfcfcf
*/
#app {
	background-color: #2e3b41;
	color: #cfcfcf;
	font-family: Verdana, sans-serif;
	font-size: 8pt;
	width: 360px;
	margin: auto;
}
#app h1 {
	margin: 5px;
}
#app h2 {
	margin: 5px 0px 10px 5px;
}
#app h3 {
	display: inline-block;
	margin: 5px;
}
#app table {
	border-spacing: 0px;
}
#app tr {
	width: 100%;
	padding: 10px 0px;
}
#app td {
	padding: 5px;
}
#app textarea,
#app button,
#app select,
#app input {
	border: none;
	font-family: inherit;
	font-size: inherit;
	background-color: inherit;
	color: #cfcfcf;
}
#app textarea {
	display: block;
	box-sizing: border-box;
	padding: 5px;
	width: 100%;
	height: 98px;
	resize: vertical;
}
#app button,
#app select,
#app input {
	display: inline-block;
	height: 24px;
}
#app button {
	/* border-radius: 10px; */
	margin: 0px 1px 4px 0px;
	cursor: pointer;
}
#app select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('../../static/Arrow-drop-down-01.svg');
	background-repeat: no-repeat;
	background-position: right;
	background-size: auto;
	min-width: 24px;
	width: 100%;
	cursor: pointer;
}
#app input[type=color] {
	width: 100px;
	padding: 0;
	margin: 0px 10px 0px 0px;
	vertical-align: top;
	cursor: pointer;
}
#app input[type=textbox] {
	width: 100%;
	box-sizing: border-box;
	padding: 4px;
}
#app textarea:hover,
#app textarea:focus,
#app button:hover,
#app input:focus {
	background-color: #404a52;
}
#app select:focus {
	background-color: #2e3b41;
}
#app code {
	margin: 4px;
}
#app a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
#app a:hover {
	text-decoration: underline;
}
#app p {
	margin: 5px;
}
#app .group {
	padding: 0;
	border: 2px inset #2e3b41;
}
#app .fixed-height {
	height: 300px;
	overflow-y: auto;
}
#app .row {
	/* vertical-align: top; */
	margin: 2px 0px 2px 4px;
}
#app .row:hover {
	background-color: #404a52;
}
#app .lightmode {
	background-color: #d4dce8;
	border-color: #d4dce8;
	color: #2e2e2e;
}
#app .dummy {
	font-size: 10pt;
}
#app .grey {
	color: #9b9b9b;
}
#app .red:hover {
	background-color: red !important;
	border-color: red !important;
	color: white !important;
}
#app .green:hover {
	background-color: #2a2 !important;
	border-color: #262 !important;
	color: white !important;
}
#app .blue:hover {
	background-color: blue !important;
	border-color: blue !important;
	color: white !important;
}
#app .hidden {
	display: none !important;
}
#app .drag-handle {
	background-color: #202224;
	cursor: pointer;
}
