/**
 * Fabric.js Sandbox Styles
 * Only affects sandbox page, fully isolated with #sandbox-root prefix
 */

#sandbox-root #sandbox-video-wrapper {
    position: relative;
    width: 100%;
    max-height: 80vh;
}

#sandbox-root #sandbox-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 1;
}

#sandbox-root #sandbox-fabric-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    border-radius: 14px;
    outline: 3px solid rgba(255,0,0,0.6);
    background: transparent;
}

#sandbox-root #sandbox-fabric-canvas[style*="pointer-events: auto"] {
    pointer-events: auto !important;
}

#sandbox-root #sandbox-status {
    margin-top: 8px;
    color: #EEE;
    font-size: 12px;
}
