body {
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}

.controls {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.controls button {
	margin: 5px;
}
.progress-container {
	width: 100%;
	height: 10px;
	background: #444;
	margin: 10px 0;
	border-radius: 5px;
	cursor: pointer;
	overflow: hidden;
}
.progress {
	height: 100%;
	background: #a00000;
	width: 0%;
	border-radius: 5px;
	transition: width 0.2s linear;
}

.tracks {
	display: flex;
	flex-direction: row;
}

.queue,
.all-tracks {
	width: 50%;
	margin: 20px;
}
.queue ul,
.all-tracks ul {
	list-style: none;
	padding: 0;
}
.queue li,
.all-tracks li {
	background: #a00000;
	color: #fff;
	padding: 10px;
	margin: 5px 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.active-track {
	background: white !important;
	color: black !important;
	border: solid;
	border-width: 2px !important;
	border-color: #a00000 !important;
}
.loop-toggle {
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.svg-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background-color: white;
	color: white;
	border: solid;
	border-radius: 5px;
	border-color: #a00000;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	padding: 0.4rem;
}

.svg-icon-button:hover {
	background-color: #c40000;
	transform: scale(1.05);
}

.svg-icon-button:active {
	transform: scale(1);
}

/* SVG inside button */
.svg-button svg,
.svg-icon-button svg {
	width: 1.2rem;
	height: 1.2rem;
	fill: currentColor;
	transition: fill 0.2s ease;
}
