/* Simple iOS YouTube Fullscreen Prevention */

/* Only target iOS devices */
@supports (-webkit-touch-callout: none) {
    /* Force all YouTube iframes to stay inline */
    iframe[src*="youtube.com"],
    iframe[data-src*="youtube.com"] {
        -webkit-presentation-mode: inline !important;
    }
}

/* CSS rule for hidden playbook containers */
.playbook-hidden {
    display: none !important;
    pointer-events: none !important;
} 