.audio-player {
	width: 400px;
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
}

.controls {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	gap: 10px;
}

.play-btn {
	background: none;
	border: none;
	font-size: 14px;
	cursor: pointer;
}

.progress-container {
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.progress-bar {
	flex-grow: 1;
	height: 3px;
	background: #ddd;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
}

.progress {
	height: 100%;
	width: 0;
	background: #007bff;
	border-radius: 5px;
	position: absolute;
}

.volume-control {
	display: flex;
	align-items: center;
}

.volume-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 70px;
	height: 3px;
	margin-left: 5px;
	cursor: pointer;
	background: gray !important;
}

.time {
	font-size: 12px;
	color: #555;
}

/* Style for Firefox */
.volume-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	background: gray !important;
	border-radius: 50%;
	cursor: pointer;
	border: none;
}

/* Style for Chrome, Edge, Safari */
.volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px; /* Adjust the size */
	height: 14px;
	background: gray !important; /* Blue color */
	border-radius: 50%;
	cursor: pointer;
	border: none;
}