/* CSS Document for Screens */



/* Ensure the container is the bounding box for the absolute button */
.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Force the video to stay under the button */
.video-container video {
    display: block;
    width: 100%;
    height: auto;
    z-index:1;
}

/* Overlay the button neatly in the bottom-right corner */
button#videoCtrl {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* Ensures it sits on top of the video */
    
    /* Minimal, clean styling */
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* Hover and focus states for accessibility */
button#videoCtrl:hover,
button#videoCtrl:focus {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    outline: 3px solid #0073aa; /* WordPress blue focus ring */
}

#ctrlIcon {
    display: inline-block;
    width: 36px;  /* Adjust size as needed */
    height: 36px; /* Adjust size as needed */
    vertical-align: middle;
    
}


