/*
 * KelaketFilm Video Watermark Styles
 */

.kfwv-video-wrapper {
    position: relative; /* Essential for positioning the watermark absolutely within this container */
    /* Ensure the wrapper takes the same dimensions as the video player */
    display: inline-block; /* Or block, depending on the video player's display property */
    line-height: 0; /* Prevents extra space below the video */
}

.kfwv-watermark {
    position: absolute;
    z-index: 10; /* Ensure the watermark is above the video player */
    max-width: 100px; /* Example: Adjust as needed */
    height: auto;
    opacity: 0.8; /* Example: Adjust for desired transparency */
    pointer-events: none; /* Allows clicks to pass through to the video player */
}

/* Position classes are handled by inline styles in PHP function kfwv_generate_css_margin */
/* Example:
.kfwv-watermark.top-right {
    top: 10px;
    right: 10px;
}
*/
