/**
 * Styles for the Fake 3D Image Plugin public-facing shortcode.
 */
.fake-3d-image-container {
    position: relative;
    overflow: hidden;
    /* Ensure the container has a defined size */
    min-height: 200px; 
    /* Fallback for browsers without JS/WebGL */
    background-color: #333; 
}

.fake-3d-image-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}
