body.webapp {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif !important;
    font-style: italic;
    font-weight: bold; /* kräftiges Schriftbild */
  }
  
  body.webapp .info-text {
  font-size: 0.9em;
  font-weight: bold;
  text-align: left;
}
  body.webapp h1::after {
  content: "";
  display: block;
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 10px auto;
}


  body.webapp h1,
  body.webapp h2,
  body.webapp h3 {
    font-size: 1em;
    text-align: center;
    font-weight: bold; /* statt normal */
  }

  body.webapp p,
  body.webapp .video-source {
    font-size: 0.9em; /* Text etwas kleiner, aber gleichbleibend kräftig */
  }

  body.webapp .video-block {
    text-align: center;
    margin-bottom: 2rem;
  }

  body.webapp video {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  }

  body.webapp video:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
  }

  body.webapp .video-divider {
    border: 1px solid #626262;
    width: 50%;
    margin: 15px auto;
  }

  body.webapp .video-source {
    color: #888;
    margin-top: 5px;
  }

  body.webapp footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9em;
    color: #ccc;
  }

  .center {
    text-align: center;
  }

  .left {
    text-align: left;
  }

 body.webapp section {
  text-align: center;
}

body.webapp .table-wrap {
  text-align: left;   /* wichtig */
  margin: 2rem 0;
}

body.webapp .table-wrap .video-table {
  margin-left: auto;
  margin-right: auto;
}


body.webapp .video-block,
body.webapp .centered {
  text-align: center;
}

  body.webapp .video-container {
  display: inline-block;
  border-radius: 15px;   /* Abrundung für das Video selbst */
  overflow: hidden;       /* sorgt dafür, dass das Video in den runden Ecken abgeschnitten wird */
}

body.webapp .video-container video {
  display: block;
  width: 100%;
  height: auto;
}


.centered {
  text-align: center;
  margin-top: 2rem;
}

.bordered {
  border: 2px solid #626262;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Tabellenstil nur für Videoseite */
table.video-table {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  border-collapse: collapse;
  font-size: 0.9em;
  color: #fff;
  background-color: #2b2b2b;

  font-style: normal;
  font-weight: normal;
  table-layout: auto;
}

table.video-table th,
table.video-table td {
  border: 1px solid #626262;
  padding: 8px 12px;
}

table.video-table th:first-child,
table.video-table td:first-child {
  width: 30%;
  text-align: left;
  padding-left: 18px;
}

table.video-table th:nth-child(2),
table.video-table td:nth-child(2),
table.video-table th:nth-child(3),
table.video-table td:nth-child(3) {
  width: 35%;
  text-align: center;
}

table.video-table thead {
  background-color: #4a4a4a;
  font-weight: bold;
}

table.video-table tbody tr:nth-child(even) {
  background-color: #3a3a3a;
}
