body {
    position: absolute;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}

#header {
    position: absolute;
    top: 0;
    width: 100%;
    height: 10%;
    text-align: center;
    background-image: url("/static/frontend/img/logo.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
}
    #header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #000000;
        opacity: 0;
        transition: opacity 150ms ease;
        pointer-events: none;
    }
    #editLogoButton {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        opacity: 0;
        pointer-events: none;
        transition: opacity 150ms ease;
    }
    body.config-screen-active #header:hover::before {
        opacity: 0.55;
    }
    body.config-screen-active #header:hover #editLogoButton {
        opacity: 1;
        pointer-events: auto;
    }

#activeScreenContainer {
    position: relative;
    width: 100%;
    height: 80%;
    top: 10%;
}
    #goToHomeMenuButton {
        position: fixed;
        width: 80px;
        height: 80px;
        top: 24px;
        left: 10%;
        z-index: 1000;
    }
    #instructionsDisplay {
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
        width: 100%;
    }
    
    #timeSlotList {
        position: relative;
    }
        #timeSlotList label{
            position: relative;
            height: 64px;
            color: #FFFFFF;
        }
            #timeSlotList label span{
                display: inline-block;
                position: relative;
                line-height: 46px;
            }
                .time {
                    left: 0;
                }
        #registeredCheckInButtonLabel, #overflowCheckInButtonLabel {
            color: #FFFFFF;
            height: 64px;
            font-weight: bold;
            text-shadow: 0 2px 4px #000000;
            font-size: 16pt;
            line-height: 48px;
        }

#totalActivelyInRoom, #currentTime {
    position: fixed;
    bottom: 1%;
    left: 50%;
    transform: translate(-25%);
    margin: 0;
    font-size: 4em;
    line-height: 0.5em;
    background-color: #00000077;
    user-select: none;
    padding: 12px 6px 18px !important;
}
    #inEventLabel {
        font-size: 8pt;
        line-height: 8pt;
        text-align: center;
        margin: 0 0 6px;
    }
    #numberCount {
        font-size: 0.8em;
        text-align: center;
        margin: auto;
    }

    #currentTime {
        font-size: 3.4em;
        left: 20%;
    }

#emptyRoomModalContent {
    background-color: #3a1118;
    box-shadow: 0 0 0 1px #7f1d1d, 0 18px 60px #000000aa;
}

.modal-backdrop.empty-room-backdrop {
    background-color: #7f1d1d;
}

.modal-backdrop.empty-room-backdrop.show {
    opacity: 0.55;
}
