
    
body { 
	font-family: 'Segoe UI', sans-serif; 
	background-color: #aa33ff;
}

.quantity-panel {
	background-color: #000;
	padding: 5;
	display: flex;
	justify-content: space-evenly;
	width: 600px;
	height: 50px;
	border: 5px;
	border-radius: 4px;
	border-color: black;
	gap: 100px;
	box-sizing: border-box;
	margin: 0 auto;
}

.q-item {
	display: flex;
	gap: 10px;
	align-items: center;
}

.q-label {
	font-size: 14px; 
	padding-left: 50px;
	color: rgb(230, 227, 227);
	font-weight: bold; 
	text-transform: uppercase; 
}

.q-val { 
	display: flex;
	font-size: 14px; 
	font-weight: bold; 
	color: rgb(230, 227, 227); 
}

.elevation-panel {
	display: flex;
	flex-direction: row; /* Stack data items vertically */
	width: 1000px;
	height: auto;
	gap: 5px;
	justify-content: center;
}

/* This color will stay active on the selected button */
.elev-btn.active {
	background-color: #e67e22 !important; /* A distinct orange color */
	color: white;
	border: 2px solid #d35400;
}

.elev-btn {
	font-size: 12px;
	text-transform: uppercase;
	
}

.hidden { 
	display: none !important;
}



		
		

		