﻿/* Iframe Protection Styles */
.iframe-embedded {
    /* Disable text selection to prevent some bypass methods */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .iframe-embedded a {
        /* Ensure links look normal but can't be opened in new tabs */
        cursor: pointer;
    }

        /* Optional: Add a subtle visual indicator */
        .iframe-embedded a:after {
            /* You could add a small icon to indicate restricted links */
            /* content: "🔒"; font-size: 0.7em; opacity: 0.3; margin-left: 2px; */
        }

    /* Re-enable text selection for input fields */
    .iframe-embedded input,
    .iframe-embedded textarea,
    .iframe-embedded select {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
