body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.video-container {
    margin-top: 20px;
}

.button-container {
    margin-bottom: 20px;
}

.video-label {
    margin-bottom: 5px;
    font-weight: bold;
}

.video-links {
    margin-bottom: 10px;
}

.video-links a {
    margin-right: 15px;
    color: #0066cc;
    text-decoration: none;
}

.video-links a:hover {
    text-decoration: underline;
}

button {
    padding: 10px 15px;
    margin-right: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

video {
    width: 100%;
    max-height: 500px;
    display: block;
}

.video-overlay-container {
    position: relative;
}

#overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicks to pass through to the video */
    z-index: 10;
}