/* Transparent background, allow dragging of window */
body {
    background: rgba(0,0,0,0); 
}

/* Flip output video horizontally */
#renderedcanvas {
    isolation: isolate;
    -moz-transform: scale(-1, 1); 
    -webkit-transform: scale(-1, 1); 
    -o-transform: scale(-1, 1); 
    transform: scale(-1, 1); 
    filter: FlipH;
    -webkit-app-region: drag;
}

#statsoverlay_background {
    background-color: black;
    opacity: 60%;
    -webkit-app-region: no-drag;
    -webkit-user-select: none;
    user-select: none;
    width: fit-content;
    block-size: fit-content;
}

#statsoverlay {
    opacity: 100%;
    font-family: sans-serif;
    font-size: 10pt;
    color: white;
}

p { 
    margin: 5px;
}