.audio-player {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	background-color:#500000;
	padding: 20px;
	max-width: 400px;
	width: 100%;
}
  
.audio-controls {
	display: flex;
	justify-content: center;
	align-items: center;
}
  
.audio-controls button {
	background-color: #ff0000; /* Red color */
	color: #ffffff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 0 10px;
	font-size: 18px;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	outline: none;
}
  
.audio-progress {
	position: relative;
	height: 6px;
	background-color: #f0f0f0;
	border-radius: 3px;
}
  
.audio-progress-bar {
	opacity: 0%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #ff0000;
	border-radius: 3px;
}
  
.audio-seek-bar {
	appearance: none;
	width: 100%;
	height: 6px;
	background-color: #000000;
	border-radius: 3px;
	margin-top: 10px; 
	outline: none;
}
  
.audio-seek-bar::-webkit-slider-thumb {
	appearance: none;
	width: 14px;
	height: 14px;
	background-color: #ff0000;
	border-radius: 50%;
	cursor: pointer;
}
  
.audio-seek-bar::-moz-range-thumb {
	width: 14px;
	height: 14px;
	background-color: #ff0000;
	border: none;
	border-radius: 50%;
	cursor: pointer;
}
  
.audio-time {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #555555;
	margin-top: 5px;
}
  
.audio-time span {
	flex: 1;
}
  
.audio-time span:last-child {
	text-align: right;
}
  
.audio-time span:first-child::after {
	content: "/";
	margin-left: 5px;
}
  
.audio-title {
	font-size: 18px;
	color: #000000;
	margin-bottom: 10px;
}
  
.audio-title a {
	color: #ff0000;
	text-decoration: none;
}
  
.audio-title a:hover {
	text-decoration: underline;
}
  
.audio-volume {
	display: flex;
	align-items: center;
}
  
.audio-volume-slider {
	appearance: none;
	width: 100px;
	height: 6px;
	background-color: #000000; 
	border-radius: 3px;
	margin-left: 10px;
}
  
.audio-volume-slider::-webkit-slider-thumb {
	appearance: none;
	width: 14px;
	height: 14px;
	background-color: #ff0000; 
	border-radius: 50%;
	cursor: pointer;
}
  
.audio-volume-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	background-color: #000000; 
	border: none;
	border-radius: 50%;
	cursor: pointer;
}
  
#current-time {
	color: #000000;
}

#total-time {
	color: #000000;
}

#song-list a {
    color: #780404;
}