audio {
	width: 100%;
	height: 30px;
}

audio::-webkit-media-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	border-radius: 0.5rem;
}
audio::-webkit-media-controls-panel {
    background-color: #fff;
}

/* Add dark mode styles for audio player */
@media (prefers-color-scheme: dark) {
	audio::-webkit-media-controls {
		background-color: #4b5563;
	}
	audio::-webkit-media-controls-panel {
		background-color: #4b5563;
	}
}