.main {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	flex-direction: column
}
#testArea {
	width: min(500px, 100% - 2px);
	height: 30px;
	border: 1px solid #000;
	border-radius: 5px;
	position: relative;
	user-select: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
	overflow: hidden
}
#testArea > * {
	pointer-events: none
}
#testTextBorder {
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center
}
#testText {
	background-color: #ccccccbb;
	line-height: 1em;
	padding: 2px 5px;
	border-radius: 3px
}
#timeline {
	width: 100%;
	height: 100%;
	position: relative
}
.timedot {
	position: absolute;
	top: 0;
	left: calc(var(--place) * (100% - 4px));
	width: 4px;
	height: 100%;
	background-color: #dc143c
}
button {
	border: 2px solid #000;
	border-radius: 5px;
	padding: 8px 16px;
	cursor: pointer
}
