/* Estilo do Modal */
#dynamic-youtube-modal {
    display: none; /* Inicialmente escondido */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8); /* Fundo escuro */
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    width: 60%; /* Ajuste o tamanho conforme necessário */
}

#dynamic-youtube-modal .modal-content {
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
}

#dynamic-youtube-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
}

#dynamic-youtube-modal .close-modal:hover {
    background: darkred;
}

.modal {
    display: block !important;
    visibility: visible !important;
}

.modal-popup {
   /* display: none;  Define o modal para começar oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

