#m3u8-container {
    transition: all 0.3s ease-in-out;
}
.plyr__control--overlaid {
    display: flex !important;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
}
.m3u8-normal {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
}

.m3u8-fixed {
    position: fixed;
    bottom: 90px;
    right: 10px;
    width: 300px;
    height: 170px;
    border-radius: 8px;
    z-index: 999999 !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    background: #000;
    pointer-events: auto;

}

* {
    position: relative;
    z-index: auto;
}


.m3u8-fixed video {
    width: 100%;
    height: 100%;
}

/* Evitar que el player se fije en móviles */
@media (max-width: 768px) {
    .m3u8-fixed {
        position: relative !important;
        /* ⚡ Vuelve a su posición normal */
        width: 100%;
        height: auto;
        bottom: auto;
        right: auto;
    }
}