/* WebGazer Video Feed - Hidden by default */
#webgazerVideoFeed {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    border: 4px solid var(--color-primary) !important;
    z-index: 999 !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 0 20px rgba(56, 208, 229, 0.5) !important;
}

/* Hide WebGazer Overlays */
#webgazerFaceOverlay, 
#webgazerFaceFeedbackBox,
.webgazer_face_feedback {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: fixed !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* Face Canvas (Custom Implementation) */
.face-canvas {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--color-primary);
    z-index: 1000;
    box-shadow: 0 0 20px rgba(56, 208, 229, 0.5);
    image-rendering: auto;
}

/* Gaze Indicator Dot */
.gaze-indicator {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
}
