<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	background: hsl(0, 0%, 97%);
	color: hsl(0, 0%, 7%);
	font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
		helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
}

#root {
	max-width: 52rem;
	margin: 1rem auto;
	padding: 1rem;
}

#root &gt; * + * {
	margin-top: 0.75em;
}

h1 {
	font-size: 1.43rem;
}

.chart {
	display: block;
}

.chart .axis-y path {
	opacity: 0;
}

.chart .axis-y text {
	color: hsl(0, 0%, 25%);
	font-size: 0.8rem;
	font-weight: 700;
}

.chart .axis-x path {
	color: hsl(0, 0%, 57%);
}

.chart .axis-x text {
	color: hsl(0, 0%, 37%);
	font-size: 0.6rem;
	font-weight: 700;
}

form {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 0.5rem;
}

label {
	color: hsl(0, 0%, 25%);
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0 0.5rem;
}

label input {
	width: 1em;
	height: 1em;
	opacity: 0;
}

label svg {
	display: block;
	width: 1em;
	height: 1em;
	top: 0;
	right: 0;
	position: absolute;
}</pre></body></html>