/**
 * Video Player Styles
 */

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    color: #fff;
    height: 100%;
    font-family: sans-serif;
}

.player-Playerjs {
    position: absolute !important;
    height: 100% !important;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    color: white;
    z-index: 999999;
}

#error-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: black;
    color: white;
    z-index: 999999;
    text-align: center;
    padding: 0 20px;
}