html, body {
	font-family: monospace !important;
	font-size: small;
	margin: 0;
	padding: 0;
	overflow: hidden; /* Prevent all scrolling */
	height: 100vh;
}

#fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: transparent;
	backdrop-filter: none;
	border-bottom: none;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	box-sizing: border-box;
}

.site-title {
	font-family: monospace;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	color: #333;
}

.burger-button {
	background: none;
	border: none;
	color: #333;
	font-size: 18px;
	cursor: pointer;
	padding: 10px;
	margin-left: auto;
	transition: color 0.3s ease;
}

.burger-icon {
	font-size: 20px;
	line-height: 1;
}

.burger-button:hover {
	color: #666;
}

.burger-button:focus {
	outline: none;
}

#controls {
	position: fixed;
	top: 60px; /* Below the header */
	left: 20px;
	width: 300px; /* Fixed width instead of full width */
	background-color: transparent;
	backdrop-filter: none;
	border-bottom: none;
	z-index: 999;
	padding: 15px 20px;
	box-sizing: border-box;
	max-height: none; /* Remove height limit */
	overflow-y: visible; /* Remove scrolling */
}

label {
	max-width: 150px;
	width:150px;
	text-align:left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


.maincanvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	/* Lock canvas completely */
	touch-action: none;
	pointer-events: none;
	transform: translate3d(0,0,0);
	backface-visibility: hidden;
}

/* Content container for SPA-style layout */
.content-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: 0; /* Below controls and header */
}

.content-section {
	position: absolute;
	width: 100%;
	height: 100vh;
	transition: transform 0.3s ease-out;
}

.banner-section {
	top: 100vh;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.items-section {
	top: 200vh;
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	padding: 20px;
	overflow-y: auto;
}

/* .hidden class and related rules removed: controls will never be hidden */

#BannerText {
	margin: 20px 0;
	padding: 20px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
}

#itemFolder::-webkit-scrollbar {
	display: none;
}

#itemFolder {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	min-height: 100vh; /* Ensure there's content to scroll through */
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
}

input[type="range"] {
	-webkit-appearance: none;
	width: 75px;
	height: 4px;
	border-radius: 0px;
	background: #fff;
	border: solid 1px #333; /* Default color, will be overridden by dynamic styles */
	outline: none;
	opacity: 0.9;
	transition: opacity .2s;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	opacity: 1;
	width: 7px;
	height: 13px;
	border-radius: 25%;
	background: #fff;
	border: solid 1px #333; /* Default color, will be overridden by dynamic styles */
	cursor: pointer;
}

hr {
	border: none;
	height: 1px;
	background-color: #333; /* Default color, will be overridden by dynamic styles */
	margin: 15px 0;
}

