

/* Center the modal and set a medium size */
#videoModal .modal-dialog {
    max-width: 700px; /* Medium size */
    margin: 0 auto;

}

/* Ensure the video is responsive */
#videoModal .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

#videoModal .embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

#videoModal .embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.clickable-video {
    cursor: pointer; /* Ensure the hand cursor appears */
}

