/**
 * Pixel Art Animation Styles
 */

#pixel-art {
    position: relative;
    cursor: none !important;
    /* Hide default cursor */
    overflow: hidden;
    /* Prevent scrollbars if canvas slightly overflows */
    /* Background color is set manually by the user */
}

/* Ensure canvas sits overlaid correctly */
#pixel-art canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through if needed, though interaction relies on mousemove */
    z-index: 1;
    /* Sit above background */
}

/* Ensure content inside pixel-art (if any) is above the canvas */
#pixel-art>*:not(canvas) {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    /* Allow interaction with content */
}