html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    align-items: center;
    font-family:  'Courier New', monospace;
    background-color: #000000;
  }
  #webviewContainer {
    height: 100%;

  }
  .prev {
  width: 100%;
  height: 15px;
  background-color: #000000;
  color: green;
  align-items: center;
  text-align: center;
  font-size: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  }
    
  .time {
  width: 100%;
  height: 15px;
  background-color: #000000;
  color: #8BC34A;
  align-items: center;
  text-align: center;
  font-size: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  }
  .sin { 
  width: 100%;
  height: 15px;
  background-color: #000000;
  color: white;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  padding-top: 10px;
  }
  .text {
      display: inline-block;
      color: green;
      background-color: white;
      text-align: center;
   }

     /* Estilos CSS para o diálogo */
     .dialog {
      text-align: center;
      width: 300px;
      height: 350px; /* Defina a altura desejada */
      background-color: #ece0e0;
      border: 1px solid #922424;
      border-radius: 5px;
      padding: 20px;
      position: fixed;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 9999; /* Define um valor alto para que o diálogo fique na frente de outros elementos */
  }
  
  h1 {
    font-size: 24px;
}

p {
    font-size: 16px;
}
button {
  font-size: 18px;
  font-weight: bold;
}