﻿.vvg-video-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    pointer-events: none; /* prevents the wrapper from blocking video controls */
}

    .vvg-video-wrap > video {
        display: block;
        width: 100%;
        height: auto;
        pointer-events: auto; /* allow native controls to be clickable */
    }

.vvg-unmute-btn {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 5;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    background: rgba(33, 59, 52, 0.70);
    color: #fff;
    pointer-events: auto; /* button remains clickable */
}

    .vvg-unmute-btn:focus {
        outline: 2px solid rgba(255, 255, 255, 0.85);
        outline-offset: 2px;
    }

        /* Optional: focus ring only for keyboard users (modern browsers) */
        .vvg-unmute-btn:focus:not(:focus-visible) {
            outline: none;
        }


@media (max-width: 576px) {
    .vvg-unmute-btn {
        left: 12px;
        top: 12px;
        padding: 10px 14px;
    }
}
