body {
    margin: 0;
    padding: 0;
    /* transparent background */
    background-color: transparent;
    /* we explicitly set the size of the body element */
    width: 1280px;
    height: 720px;
    overflow: hidden;
}

object#applicationManager {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0px;
    height: 0px;
    z-index: -2;
}

/* safe area as recommended by standard */
/* div.safe_area {
    position: absolute;
    left: 128px;
    top: 36px;
    width: 1024px;
    height: 648px;
    background-color: rgba(0, 0, 0, .5);
    z-index: 10002;
} */

.confirmConsent {
    /* 5px green square top left with 5px padding from the left*/
    position: absolute;
    left: 5px;
    top: 5px;
    width: 5px;
    height: 5px;
    background-color: green;
    z-index: 1000;

}

.noConfirmConsent {
    /* 5px green square top left with 5px padding from the left*/
    position: absolute;
    left: 5px;
    top: 5px;
    width: 5px;
    height: 5px;
    background-color: red;
    z-index: 1000;

}

.confirmHLS {
    /* 5px green square top left with 5px padding from the left*/
    position: absolute;
    left: 15px;
    top: 5px;
    width: 5px;
    height: 5px;
    background-color: green;
    z-index: 1000;

}

.noConfirmHLS {
    /* 5px green square top left with 5px padding from the left*/
    position: absolute;
    left: 15px;
    top: 5px;
    width: 5px;
    height: 5px;
    background-color: red;
    z-index: 1000;

}

/* Console overlay for debugging */
#console-overlay {
    position: absolute;
    left: 128px; /* safe_area left */
    top: 36px;   /* safe_area top */
    width: 819px;  /* 80% of safe_area width (1024 * 0.8) */
    height: 518px; /* 80% of safe_area height (648 * 0.8) */
    background-color: rgba(0, 0, 0, 0.6); /* 60% transparent black */
    z-index: 9999;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    font-family: monospace;
    font-size: 12px;
    color: #00ff00; /* Green text for console look */
    display: none; /* Hidden by default */
}

#console-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* VOD Overlay */
#vod-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 1280px;
    height: 720px;
    z-index: 10000; /* Highest z-index to ensure it's on top */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none; /* Hidden by default */
}

#vod-overlay.active {
    display: block;
}