label {
	/* Makes each label appear on its own line (block) */
	/* display: block;  */
	margin-bottom: 5px;
	font-family: Times New Roman, Helvetica, sans-serf;
	font-size: 12px;
	color: black;
}

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: 50px; 
	padding: 1px;
	box-sizing: border-box; /* Ensures padding doesn't add to width */
	border: 1px solid #ccc;
	border-radius: 4px;
}

.no-spinner::-webkit-outter-spin-button,
.no-spinner::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.no-spinner {
	-moz-appearance: textfield; /* eliminate spinner in Firefox */
	appearance: textfield;
}

.form {
	max-width: 400px;
	padding: 10px;
	border: 1px solid #000;
	border-radius: 5px;
	text-align: center;
}

.title {
	margin-bottom: 30px;
	text-align: center;
	font-weight: bold;
}

.dropdown {
	width: 100px; 
	padding: 1px;
	box-sizing: border-box; /* Ensures padding doesn't add to width */
	border: 1px solid #ccc;
	border-radius: 4px;
}

.units {
	width: 100px;
	padding: 8px;
	box-sizing: border-box;
	text-align: left;
}

.container {
	display: flex;
}

.panel {
	padding: 0px;
	/*flex: 1;*/
}

.left-panel {
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: #e0e0e0;
}

.right-panel {
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: #e0e0e0;
	background-color: #e0e0e0;
}

.box {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 5px;
	background-color: #FFFFFF;
}

.nav-ul {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
}

.nav-li {
	float: left;
	padding: 0;
}

.nav-li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.nav-li a:hover {
	background-color: #111;
}

.filler {
	background-color: #e0e0e0;
	min-height: 110px;
	max-height: 120px;
}

#layer1 {
	width: 100%;
	height: 100%;
	z-index: 1;
	display: none;
	justify-content: flex-start;
	align-items: flex-start;
	color: black;
}

#layer2 {
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	color: black;
}

#nolayer {
	width: 100%;
	height: 100%;
}