html,
body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    margin: 0;
    color: white;
}

#container {
    width: 100%;
    margin: 0;
    height: 100%;
    text-align: center;
}

#imagePlayer {
    height: 100%;
    width: 100%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: none;
}

#infobox {
    height: auto;
    width: auto;
    color: white;
    font-size: 18px;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(1, 26, 36, 0.4);
    backdrop-filter: blur(3px);
    text-align: center;
    display: none;
}

#defaultVid {
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: inherit;
}

#setupPanel {
    position: absolute;
    bottom: 4vh;
    right: 3vw;
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

#screendetails {
    text-align: right;
    color: white;
    padding: 1vw;
    background-color: rgba(1, 0, 9, 0.4);
    backdrop-filter: blur(3px);
    border-radius: 0.5vw;
}

#screenId {
    font-size: 1.25vw;
    font-weight: 600;
}

#deviceTracker {
    font-size: 0.75vw;
    opacity: 0.9;
    margin-top: 0.5vh;
}

#setupTime {
    font-size: 0.75vw;
    opacity: 0.8;
    margin-top: 0.5vh;
}

#setupDivider {
    width: 2px;
    height: 6vh;
    background: rgba(255,255,255,0.5);
}

#qrCode {
    padding: 0.4vw;
    background: white;
    border-radius: 0.5vw;
}

#qrCode img, #qrCode canvas {
    width: 9vw;
    height: 9vw;
    min-width: 80px;
    min-height: 80px;
}

#setupBox {
    height: 100%;
    width: 100%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* todo: change image here? */
    background-image: url('./assets/setup_bg_adonmo_landscape.png');
    display: none;
    position: fixed;
    z-index: 4;
}

#contentBox {
    height: 100%;
    width: 100%;
    margin: 0;
    position: fixed;
    object-fit: contain;
    background-color: rgba(1, 26, 36, 0.4);
    display: none;
    z-index: inherit;
}

#defaultBox {
    height: 100%;
    width: 100%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* todo: change image here? */
    background-color: rgb(1, 0, 9);
    background-image: linear-gradient(to bottom, rgba(1,0,9, 0.3), rgb(1,0,9, 0.3));
    backdrop-filter: blur(2px);
    display: block;
    top: 0;
    left: 0;
    z-index: inherit;
    position: absolute;
    object-fit: contain;
}

#videoPlayer {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

#frame {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    display: none;
}
