#container {
	position: relative;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

#container canvas {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}

body {
	width: 100%;
	min-height: 100vh;
	background-color: #cac8c5;
	margin: 0;
	padding: 16px 24px;
	box-sizing: border-box;
	font-family: "Segoe UI", Arial, sans-serif;
	overflow-x: hidden;
}
.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto 16px auto;
	gap: 24px;
	flex-wrap: wrap;
	row-gap: 16px;
}

.control-panel {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.title-area {
	flex: 1;
	text-align: center;
	font-weight: 600;
	font-size: 20px;
	color: #3e4444;
}

.title-area #selectionSummary {
	font-size: 24px;
	font-weight: 600;
}

.control-row {
	display: flex;
	gap: 12px;
}

select {
	height: 36px;
	padding: 0 12px;
	border-radius: 4px;
	border: 1px solid #6f6c6a;
	background-color: #f3f1ee;
	font-size: 14px;
}

.download-btn {
	height: 36px;
	width: fit-content;
	padding: 0 16px;
	border-radius: 4px;
	border: 1px solid #6f6c6a;
	background-color: #ffffff;
	font-size: 14px;
	cursor: pointer;
}

.download-btn:hover {
	background-color: #f3f1ee;
}

.legend {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	text-align: right;
	margin-left: auto;
}

.legend-item {
	font-weight: 600;
}

.legend-root {
	color: red;
}

.legend-first {
	color: purple;
}

.legend-second {
	color: blue;
}
