#zane-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Allows clicking through the container */
    z-index: 9999; /* Make sure it's on top */
    overflow: hidden;
}

.zane-instance {
    position: absolute;
    width: 150px;
    height: 150px;
}

.zane-instance img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

