.note {
	display: inline-block;
	background-color: lightblue;
	color: lightblue; /* 设置文字颜色与背景色一致 */
	border: 1px solid black;
	border-radius: 5px;
	margin: 2px;
	padding: 2px;
	text-align: left;
	box-sizing: border-box;
	transition: background-color 0.3s;
	position: relative;
}

.progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: left;
	background-color: lightgray;
	z-index: 1;
	border-radius: 5px;
}

.highlight {
	background-color: yellow;
}

.fade {
	background-color: lightgrey;
}

#notePlayerContainer {
	position: relative;
	border-radius: 5px;
	background-color: #FAFAD2;
	padding: 2px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	/*width: 50vw;*/
}

#verticalLine {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: red;
	left: 50%;
	transform: translateX(-50%);
}

.progress-text {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	font-size: inherit;
	color: Black;
	padding: 0 12px; /* 添加内边距来微调对齐 */
	box-sizing: border-box; /* 确保内边距不会影响元素宽度 */
}