/* Correção para o player de TV - garantir que seja exibido */
#webtv-container {
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 300px !important; /* Altura mínima */
    background-color: #000 !important; /* Fundo escuro para vídeos */
    border-radius: 8px !important;
}

#webtv-iframe, #webtv-video {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    overflow: hidden !important;
}

#webtv-iframe[src]:not([src=""]), #webtv-video[src]:not([src=""]) {
    display: block !important; /* Mostrar apenas quando tiver uma URL válida */
}

/* Correção para proporção 16:9 */
.col-webtv {
    overflow: hidden !important;
    width: 100% !important;
}

.tv-descricao {
    margin-top: 10px !important;
}

/* Correção responsiva */
@media (max-width: 768px) {
    #webtv-container {
        position: relative !important;
        padding-bottom: 56.25% !important; /* Proporção 16:9 */
        height: 0 !important;
        overflow: hidden !important;
        min-height: 0 !important; /* Sobrescrever a altura mínima */
    }
    
    #webtv-container iframe,
    #webtv-container video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
}