/* Post to Voice Player Styles */

.ptv-player-container {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ptv-player-header {
	display: flex;
	align-items: center;
	gap: 12px;
	color: white;
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.3px;
}

.ptv-player-header span {
	line-height: 1.4;
}

.ptv-player-icon {
	width: 24px;
	height: 24px;
	stroke-width: 2;
	flex-shrink: 0;
}

.ptv-audio-player {
	width: 100%;
	height: 40px;
	accent-color: white;
}

.ptv-audio-player::-webkit-media-controls-panel {
	background-color: rgba(255, 255, 255, 0.1);
}

.ptv-audio-player::-webkit-media-controls-play-button {
	background-color: white;
	border-radius: 50%;
	width: 36px;
	height: 36px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.ptv-player-container {
		padding: 15px;
		margin-bottom: 20px;
	}

	.ptv-player-header {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.ptv-audio-player {
		height: 36px;
	}
}
