I currently have a basic video displayed on my website
<video width="100%" class="posted_vid">
<source src="uploaded_videos/<?php echo $Video; ?>">
</video>
However, the video player appears as a default HTML video, similar to the one shown here: https://www.w3schools.com/html/html5_video.asp. I am interested in customizing the player controls to mimic the style of YouTube or Facebook videos. How can I achieve this?