       
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #333333, #010101);
            color: #fff;
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
			min-height: 900px;
        }
        .container {
            background: rgba(0, 0, 0, 0.8);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            width: 90%;
            max-width: 600px;
        }

		header,footer {
				display: none !important;
			}

		#wp--skip-link--target > div.wp-block-group.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained{
				display: none !important;
			}

		.entry-content.wp-block-post-content.has-global-padding.is-layout-constrained.wp-block-post-content-is-layout-constrained {
			padding: 0px 0px;
		}

        .step {
            display: none;
        }
        .step.active {
            display: block;
        }
        h2 {
            color :#fff!important;
            margin: 0 0 20px 0;
            font-size: 24px;
            font-family: Helvetica!important;
        }
        h3 {
            color :#fff!important;
            margin: 0 0 20px 0;
            font-size: 30px;
            font-family: Helvetica!important;
        }
	h4 {
            color :#fff!important;
            margin: 0 0 20px 0;
            font-size: 24px;
            font-family: Helvetica!important;
        }
	.comment{font-size: 12px;}
        p {
            color :#fff!important;
            font-family: Helvetica!important;
            margin-bottom: -5px;
        }
        .selectors{
            display: flex;
            width: 100%;
        }

        .videoSource{
            width: 50%;
            margin-right: 4%;
			text-align:left;
        }
        .audioSource{
            width: 50%;
            margin-left: 4%;
			text-align:right;
        }
		#controls {
			width: 100%;
			display: flex;
			flex-wrap: wrap;
			gap: 10px; /* opcional */
		}

		#controls button {
			flex: 1 1 48%; /* 2 por linha */
		}

        #nextAndPrev {
            width: 24%;
        }
        #startbtn{
            width: 24%;
            background-color: green!important;
        }
        #startbtn:hover{
            width: 24%;
            background-color: rgb(1, 65, 1)!important;
        }
        #stopbtn{
            width: 24%;
            background-color: rgb(185, 2, 2)!important;
        }
        #stopbtn:hover{
            width: 24%;
            background-color: rgb(160, 3, 3)!important;
        }
        select, input[type="text"], input[type="email"], button {
            width: calc(100% - 20px);
            padding: 10px;
            margin: 10px 0;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }
        select, input[type="text"], input[type="email"] {
            background: #fff;
            color: #000;
        }
        button {
            background: #667eea;
            color: #fff;
            cursor: pointer;
            transition: background 0.3s ease;
            height: 50px;
      }
        button:hover {
            background: #764ba2;
        }
        button:disabled {
            background: #555;
            cursor: not-allowed;
        }
        .loader {
            border: 8px solid #f3f3f3;
            border-top: 8px solid #667eea;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 2s linear infinite;
            display: none;
            margin: 20px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        video {
            width: 100%;
            max-width: 100%;
            margin: 10px 0;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        
        .rec-indicator {
            position: relative;
            top: 20px;
            left: 1%;
            background-color: red;
            color: white;
            font-size: 12px;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            width: 10px;
            margin-bottom: -26px;
            animation: blink 1s infinite;  /* Adicionar esta linha */
        }
        @keyframes blink {
            0%, 80% {
              opacity: 1; /* Visível */
            }
            80%, 100% {
              opacity: 0; /* Invisível */
            }
          }

          .ytp-title{
            display: none!important;
          }
/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    animation: slide-up 0.5s ease-out forwards; /* Slide up animation */
}

.modal-content {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 90%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header .close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
}

.modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.modal-video {
    flex: 1;
    max-height: 50%;
}

.modal-extra-content {
    flex: 1;
    padding: 10px;
    background-color: #f2f2f2;
    overflow-y: auto;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Button styling */
#openModalBtn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#openModalBtn:hover {
    background-color: #0056b3;
}
