body {
	font-family: sans-serif;
	margin: 20px;
}

label {
	/* Makes each label appear on its own line (block) */
	/* display: block;  */
	margin-bottom: 5px;
}

input[type="text"] {
	/* Makes input fields take the full width for better usability */
	width: 100px; 
	padding: 8px;
	box-sizing: border-box; /* Ensures padding doesn't add to width */
	border: 1px solid #ccc;
	border-radius: 4px;
}

input[type="number"] {
	/* Makes input fields take the full width for better usability */
	width: 100px; 
	padding: 8px;
	box-sizing: border-box; /* Ensures padding doesn't add to width */
	border: 1px solid #ccc;
	border-radius: 4px;
	-moz-appearance: textfield; /* eliminate spinner in Firefox */
}

/* eliminate spinner in Chrome, Safari, Edge, Opera */
input::-webkit-outter-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

table.lookup
{
	position: relative;
	float: left;
	padding: 1px;
	margin: 1px
}

table.lookup th
{
	padding: 2px;
	background-color: lightgrey;
	font: 12px verdana, arial, helvetica;
	font-weight: bold;
	text-align: center;
}

table.lookup td
{
	font: 12px verdana, arial, helvetica;
	font-weight: bold;
	text-align: center;
}

.form {
	max-width: 500px;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	text-align: left;
}

.form-group {
	margin-bottom: 6px;
	text-align: right;
}

.title {
	margin-bottom: 20px;
	text-align: center;
	font-weight: bold;
}

.dropdown {
	width: 100px; 
	padding: 8px;
	box-sizing: border-box; /* Ensures padding doesn't add to width */
	border: 1px solid #ccc;
	border-radius: 4px;
}

.units {
	display: inline-block;
	width: 100px;
	padding: 8px;
	box-sizing: border-box;
	text-align: left;
}

.shadetabs
{
	padding: 3px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 0;
	font: bold 10px Verdana;
	list-style-type: none;
	text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li
{
	display: inline;
	margin: 0;
}

.shadetabs li a
{
	text-decoration: none;
	padding: 3px 7px; /* Spacing inside the tabs */
	margin-right: 3px; /* Space between tabs */
	color: #000000; /* Text color */
	background: #DDDDDD; /* Default background color */
	border: 1px solid #BBBBBB; /* Default border */
	border-top-left-radius: 6px; /* Rounded top corners */
	border-top-right-radius: 6px;
}

.shadetabs li a:visited
{
	color: #2d2b2b;
}

.shadetabs li a:hover
{
	text-decoration: underline;
	color: #2d2b2b;
}

.shadetabs li.selected
{
	position: relative;
	top: 1px;
}

.shadetabs li.selected a
{ /*selected main tab style */
	/* background-image: url(images/shadeactive.gif); */
	border-bottom-color: white;
}

.shadetabs li.selected a:hover
{ /*selected main tab style */
	text-decoration: none;
}

.container {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
}

.panel {
	padding: 20px;
	/*flex: 1;*/
}

.left-panel {
	flex-shrink: 0;
	width: 450;
	background-color: #e0e0e0;
}

.right-panel {
	background-color: #f0f0f0;
	/*flex: 1;*/
}

.nav-ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
}

.nav-li {
	float: left;
}

.nav-li a {
	display: block;
	color: white;
	text-align: center;
	padding: 10px 10px;
	text-decoration: none;
}

.nav-li a:hover {
	background-color: #111;
}