/*Navigation Bereich wird geerbt von Startseite*/
/*Entfernung linker und rechter Rand*/
* {
  padding: 0;
  margin: 0;
}

.theorieuhrzeit {
  color: white;
  list-style-type: none;
}

.theorieuhrzeit li {
  font-family: sans-serif;
  font-size: 18px;
  color: #ddd;
}

/*Design des Theorieplan*/
.theoriecontent {
  background: #171717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.theorie-container {
  background-color: #171717;
}
/*Design Eintragen button*/
button {
  margin: 0 auto;
  padding: 5px;
  border: none;
  background: #34495e;
  color: #27ae60;
  display: flex;
  font-size: 15px;
  flex-direction: column;
}

button:hover {
  transition: 0.3s linear;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

/*Aufbau tabellenform*/
.theoriecontent h2 {
  color: white;
  width: 350px;
  font-size: 20px;
}
/*Aufbau Theorietage bereich jeder Tag*/
.theorietage {
  background: #171717;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
}

.theorietage td {
  color: white;
  font-size: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.theorietage .ausfall {
  background: yellow;
  color: black;
  padding: 20px;
  height: 100px;
  text-align: center;
  transition: 0.3s linear;
  font-size: 15px;
  border: none;
}

/*Sortierung der Tage*/
.theorietage li {
  list-style: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/*Tabellenüberschrift Montag und Mittwoch*/
th {
  background: #34495e;
  padding: 20px 20px;
  text-align: center;
  color: white;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/*Tabellen-farbe und breite innerhalb jedes Tages*/
td {
  padding: 20px;
  background: #34495e;
}

/*Setzen der Tabelle*/
table {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: block;
}

/*wird noch geprüft evtl entfernt*/
.wartungsarbeiten {
  padding: 10px;
  text-align: center;
  background: #171717;
}

.wartungsarbeiten h2 {
  font-size: 20px;
  padding: 10px;
  color: white;
}

.themen {
  color: white;
  background: #171717;
  width: 100%;

  display: flex;

  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.themen p {
  color: #ddd;
  max-width: 90%;
  width: 250px;
  text-align: center;
  margin: 0 auto;
}

.themen td {
  color: limegreen;
}

.print {
  width: 120px;
  height: 40px;
  border: none;
  color: white;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #34495e;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.print:hover {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media screen and (max-width: 1500px) {
  .theorieuhrzeit {
    color: white;
    list-style-type: none;
  }

  .theorieuhrzeit li {
    font-family: sans-serif;
    font-size: 18px;
    color: #ddd;
  }

  /*Design des Theorieplan*/
  .theoriecontent {
    background: #171717;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /*Design Eintragen button*/
  button {
    margin: 0 auto;
    padding: 5px;
    border: none;
    background: #34495e;
    color: #27ae60;
    display: flex;
    font-size: 15px;
    flex-direction: column;
  }

  button:hover {
    transition: 0.3s linear;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }

  /*Aufbau tabellenform*/
  .theoriecontent h2 {
    color: white;
    width: 350px;
    font-size: 20px;
  }
  /*Aufbau Theorietage bereich jeder Tag*/
  .theorietage {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
  }

  .theorietage td {
    color: white;
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
  }

  .theorietage .ausfall {
    background: yellow;
    color: black;
    padding: 20px;
    height: 100px;
    text-align: center;
    transition: 0.3s linear;
    font-size: 15px;
    border: none;
  }

  /*Sortierung der Tage*/
  .theorietage li {
    list-style: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  /*Tabellenüberschrift Montag und Mittwoch*/
  th {
    background: #34495e;
    padding: 20px 20px;
    text-align: center;
    color: white;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  /*Tabellen-farbe und breite innerhalb jedes Tages*/
  td {
    padding: 20px;
    background: #34495e;
  }

  /*Setzen der Tabelle*/
  table {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: block;
  }

  /*wird noch geprüft evtl entfernt*/
  .wartungsarbeiten {
    padding: 10px;
    text-align: center;
    background: #171717;
  }

  .print_content {
    background: #171717;
  }
  .wartungsarbeiten h2 {
    font-size: 20px;
    padding: 10px;
    color: white;
  }

  .themen {
    color: white;
    background: #171717;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .themen p {
    color: #ddd;
    max-width: 90%;
    width: 250px;
    text-align: center;
    margin: 0 auto;
  }

  .themen td {
    color: limegreen;
  }

  .print {
    width: 120px;
    height: 40px;
    border: none;
    color: white;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #34495e;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .print:hover {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

@media screen and (max-width: 1300px) {
  .theorieuhrzeit {
    color: white;
    list-style-type: none;
  }

  .theorieuhrzeit li {
    font-family: sans-serif;
    font-size: 18px;
    color: #ddd;
  }

  /*Design des Theorieplan*/
  .theoriecontent {
    background: #171717;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /*Design Eintragen button*/
  button {
    margin: 0 auto;
    padding: 5px;
    border: none;
    background: #34495e;
    color: #27ae60;
    display: flex;
    font-size: 15px;
    flex-direction: column;
  }

  button:hover {
    transition: 0.3s linear;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }

  /*Aufbau tabellenform*/
  .theoriecontent h2 {
    color: white;
    width: 350px;
    font-size: 20px;
  }
  /*Aufbau Theorietage bereich jeder Tag*/
  .theorietage {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
  }

  .theorietage td {
    color: white;
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
  }

  .theorietage .ausfall {
    background: yellow;
    color: black;
    padding: 20px;
    height: 100px;
    text-align: center;
    transition: 0.3s linear;
    font-size: 15px;
    border: none;
  }

  /*Sortierung der Tage*/
  .theorietage li {
    list-style: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  /*Tabellenüberschrift Montag und Mittwoch*/
  th {
    background: #34495e;
    padding: 20px 20px;
    text-align: center;
    color: white;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  /*Tabellen-farbe und breite innerhalb jedes Tages*/
  td {
    padding: 20px;
    background: #34495e;
  }

  /*Setzen der Tabelle*/
  table {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: block;
  }

  /*wird noch geprüft evtl entfernt*/
  .wartungsarbeiten {
    padding: 10px;
    text-align: center;
    background: #171717;
  }

  .print_content {
    background: #171717;
  }
  .wartungsarbeiten h2 {
    font-size: 20px;
    padding: 10px;
    color: white;
  }

  .themen {
    color: white;
    background: #171717;

    width: 100%;

    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .themen p {
    color: #ddd;

    text-align: center;
    margin: 0 auto;
  }

  .themen td {
    color: limegreen;
    padding: 10px;
    font-size: 13px;
  }

  .print {
    width: 120px;
    height: 40px;
    border: none;
    color: white;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #34495e;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .print:hover {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

@media screen and (max-width: 1100px) {
  .theorieuhrzeit {
    color: white;
    list-style-type: none;
  }

  .theorieuhrzeit li {
    font-family: sans-serif;
    font-size: 18px;
    color: #ddd;
  }

  /*Design des Theorieplan*/
  .theoriecontent {
    background: #171717;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /*Design Eintragen button*/
  button {
    margin: 0 auto;
    padding: 5px;
    border: none;
    background: #34495e;
    color: #27ae60;
    display: flex;
    font-size: 15px;
    flex-direction: column;
  }

  button:hover {
    transition: 0.3s linear;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }

  /*Aufbau tabellenform*/
  .theoriecontent h2 {
    color: white;
    width: 350px;
    font-size: 20px;
  }
  /*Aufbau Theorietage bereich jeder Tag*/
  .theorietage {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
  }

  .theorietage td {
    color: white;
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
  }

  .theorietage .ausfall {
    background: yellow;
    color: black;
    padding: 20px;
    height: 100px;
    text-align: center;
    transition: 0.3s linear;
    font-size: 15px;
    border: none;
  }

  /*Sortierung der Tage*/
  .theorietage li {
    list-style: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  /*Tabellenüberschrift Montag und Mittwoch*/
  th {
    background: #34495e;
    padding: 20px 0px;

    text-align: center;
    color: white;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  /*Tabellen-farbe und breite innerhalb jedes Tages*/
  td {
    padding: 20px;
    background: #34495e;
  }

  /*Setzen der Tabelle*/
  table {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: block;
  }

  /*wird noch geprüft evtl entfernt*/
  .wartungsarbeiten {
    padding: 10px;
    text-align: center;
    background: #171717;
  }

  .print_content {
    background: #171717;
  }
  .wartungsarbeiten h2 {
    font-size: 20px;
    padding: 10px;
    color: white;
  }

  .themen table {
    width: 100%;
    margin: 0 auto;
  }
  .themen {
    color: white;
    background: #171717;
    width: 100%;
    overflow-x: auto;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .themen p {
    color: #ddd;

    text-align: center;
    margin: 0 auto;
  }

  .themen td {
    color: limegreen;
    padding: 10px;

    font-size: 13px;
  }

  .print {
    width: 120px;
    height: 40px;
    border: none;
    color: white;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #34495e;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .print:hover {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}
@media screen and (max-width: 700px) {
  .theorieuhrzeit {
    display: block;
  }

  .theoriecontent h2 {
    width: 350px;
    padding: 10px;
  }

  .themencontent {
    display: block;

    margin: 0 auto;
  }

  .theorie-container {
    display: block;

    margin: 0 auto;
  }

  .themen {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  .themen th {
    padding: 20px 20px;
    font-size: 15px;
  }

  .themenordnung {
    display: block;
  }
}
