html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

#ShakaHost {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.shaka-text-container {
    display: none !important;
}

video::-webkit-media-text-track-display {
    display: none !important;
}

video::cue {
    display: none !important;
}

#CustomSubtitleLayer {
    font-family: "Noto Sans";
    position: absolute;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 10;
    transition: bottom 600ms;
}

.cue-text {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    white-space: pre-wrap;
}

/* #region | Test buttons */

#TestButtons {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    display: none;
}

.TestButton {
    height: fit-content;
    padding: 12px;
    margin: 6px;
    font-family: 'Noto Sans';
    font-size: 14px;
    background-color: #ccc;
    color: #000;
    cursor: pointer;
}

.TestButton:hover {
    background-color: #b9b9b9;
}

.TestButton:active {
    background-color: #aaa;
}

/* #endregion | Test buttons */
