/**
 * DynTube VOD Bridge — Front-End Replay Player Styles
 *
 * Scoped to .dvb-replay-player-wrap only.
 * Does not affect StreamTube's existing player or theme styles.
 * Hide-original-player CSS is injected inline via PHP when enabled.
 */

.dvb-replay-player-wrap {
	width: 100%;
	max-width: 100%;
	margin: 1.5em 0;
	font-family: inherit;
	box-sizing: border-box;
}

.dvb-replay-player-title {
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #888;
	margin: 0 0 0.5em;
	padding: 0;
}

.dvb-replay-player {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	background: #000;
	border-radius: 4px;
}

.dvb-replay-player-fallback {
	margin: 0.5em 0 0;
	font-size: 0.85em;
	text-align: right;
}

.dvb-replay-player-fallback a {
	color: #7c5cbf;
	text-decoration: none;
}

.dvb-replay-player-fallback a:hover {
	text-decoration: underline;
}

/* DOM fallback wrapper — invisible; only used as a positioning vehicle.
   Removed from DOM by dvb-placement.js after placing the player. */
.dvb-dom-fallback {
	display: contents; /* transparent wrapper */
}

