/* Wrapper for the iframe */
.iframe-wrapper {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%; /* Aspect ratio 16:9 */
background: #000; /* Optional background for visibility */
overflow: hidden;
}
/* Iframe styling */
.iframe-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* Removes the iframe border */
}