#hand-tracking-container {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 135px;
    height: 240px;
    z-index: 100;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
}

#webcam, #output {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

#hand-cursor {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('assets/dutch/logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9999;
    pointer-events: none;
    display: none;
    transition: transform 0.1s ease-out;
}

.hand-hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #00ffff);
}

#debug {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 135px;
    height: 240px;
    z-index: 1000;
    opacity: 0; /* Hide the debug view */
    pointer-events: none; /* Make it non-interactive */
    border: 2px solid white;
}

#debug video,
#debug canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
}
