#myVideo {
	width: 100%;
	height: 100%;
	display: none;
}

.video-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.video-container {
	position: relative;
	width: 80%;
	height: 80%;
}

.close-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	background: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	font-size: 20px;
	border-radius: 5px;
}

.play-icon {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.play-icon:hover {
	background-color: #0056b3;
}