/**
 * Livestream Player Styles
 */

.livestream-container {
    margin: 20px 0;
    max-width: 100%;
    position: relative;
}

.livestream-container .video-js {
    width: 100%;
    height: auto;
}

.livestream-container .video-js .vjs-tech {
    width: 100%;
    height: 100%;
}

.watermark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.watermark-overlay canvas {
    width: 100%;
    height: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .livestream-container .video-js {
        height: 300px;
    }
}

