/**
 * Style for MajoTV Player
 */
.majotv-player-wrapper {
	width: 100%;
	background: #000;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	aspect-ratio: 16/9;
	max-height: 580px;
}

.majotv-player-wrapper video {
	width: 100%;
	height: 100%;
	max-height: 100%;
	display: block;
	object-fit: contain;
	flex-shrink: 0;
}

