/**
 * Lentl WGAC — Voorleesfunctie styling
 */

/* Drijvende voorleesknop boven de selectie */
.voorlees-knop {
	position: absolute;
	background: #2c5f8d;
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	line-height: 1;
	min-width: 110px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 99999;
	display: none;
}

.voorlees-knop[hidden] {
	display: none !important;
}

.voorlees-knop:hover,
.voorlees-knop:focus-visible {
	background: #1e4468;
	outline: none;
}

.voorlees-knop.speelt {
	background: #c0392b;
}

.voorlees-knop.speelt:hover,
.voorlees-knop.speelt:focus-visible {
	background: #962d22;
}


@media (prefers-reduced-motion: reduce) {
	.voorlees-knop {
		transition: none;
	}
}
