
.video-container {
	max-width: 640px; /* Example max-width */
	margin: 20px auto;
	position: relative;
	background-color: #666; /* Background color for the player */
}

#myVideo {
	width: 100%;
	display: block; /* Removes extra space below video */
}

.controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	padding: 10px;
	box-sizing: border-box; /* Include padding in width calculation */
	display: flex;
	justify-content: space-around;
	align-items: center;
	visibility: hidden; /* Hidden by default */
	opacity: 0;
	transition: visibility 0.3s, opacity 0.3s; /* Smooth transition */
}

.video-container:hover .controls {
	visibility: visible;
	opacity: 1;
}

.controls button {
	background-color: #f00; /* Example button color */
	color: white;
	border: none;
	padding: 8px 12px;
	cursor: pointer;
}

#volume-slider, #progress-bar {
	width: 100px; /* Adjust width as needed */
	margin: 0 10px;
}
