* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  width: 100%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 150%;
  padding: 0px 10px 0px 0px;
  margin: 0px 0px;
}

h1{
  display: flex;
  justify-content: center;
}

h2,h3{
  background-color: #D3D3D3;
  color: black;
  margin: 10px 0px 10px 0px;

}

.container-horizontal-zentrieren{
  margin: 0px;
  padding: 0px 10% 0px 10%;
  border: 0px solid black;
  width: 100vw;
}

.input-button-container {
  display: grid; /* Verwende ein CSS Grid */
  grid-template-columns: 72% auto; /* Ändere die Breiten entsprechend deiner Anforderungen */
  align-items: center; /* Zentriere die Elemente vertikal */
  justify-content: right;
  gap: 0.5rem; /* Füge einen horizontalen Abstand zwischen Input und Button hinzu */
  margin: 0px 0px 0px 10px;
  padding: 5px 20px 0px 20px;
  width: 100%;
}

.css-grid-chboxen {
  display: grid;
  grid-template-columns: 72% auto; /* Erste Spalte auto (automatische Breite), zweite Spalte nimmt den verfügbaren Platz ein */
  gap: 0.5rem; /* Füge einen horizontalen Abstand zwischen Input und Button hinzu */
  margin: 0px 0px 0px 10px;
  padding: 5px 20px 0px 20px;
  align-items: top; /* Zentriere die Elemente vertikal */
  justify-content: right; /* Ausrichtung nach rechts */
  width: 100%;
}


#userInput {
  flex: 1;
  height: 3.5rem;
  background-color: transparent;
  border: 1px solid #000;
  padding: 10px;
  word-break: break-all;
  font-size: inherit;
  border-radius: 8px; 
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}

#userInput:focus {
  background-color: yellow;
}

.selected {
  background-color: #007BFF; /* Hintergrundfarbe für ausgewählte Option */
  color: #FFF; /* Textfarbe für ausgewählte Option */
}


.assistentButton {
  width: 5rem;
  height: 3.5rem;
  background-color: blue;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: inherit;
}


.hilfeButton {
  display: flex;
  align-items: center; /* Zentriert die Elemente vertikal */
  justify-content: center;
  width: 5rem;
}

.checkbox-container {
  display: grid;
  grid-template-columns: 15% 45% auto; 
  grid-template-rows: auto; 
  align-items: center; 
  justify-content: left;
  gap: 0px; 
  margin: 2px 20px 0px 0px;
  padding: 0px 20px 0px 0px;
  font-size: inherit;
  width: 100%;
}

#chkspeakResponse,
#chkNoVideo {
  margin-right: 0.5rem; /* Füge einen horizontalen Abstand zwischen den Checkboxen hinzu */
}

label[for="chkspeakResponse"], label[for="chkNoVideo"] {
  white-space: nowrap;
}




#speakResponse {
  width: 20%;
  margin-left: 0.5rem;
}


#parentElement {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  margin: 0px 2% 0px 2%;
  padding: 2px 0px 0px 0px;
  border: #000 0px solid;
  width: 80vw;
  min-height: 10vh;
  font-size: inherit;
}

#response {
  display: none;
  width: 100%;
  height: 60vh;
  color: black;
  background-color: white;
  padding: 2px;
  font-size: inherit;
  overflow-y: auto;
}

iframe{
  display: block;
  margin: 1em auto;
  width: 100%;
  height: calc(.5625 * 100vw);
}


#mapid {
  height: 400px;
  display: none;
}


/*          CSS für Hilfe-Datei            */

#containerHilfe{
  padding: 0px 10px 0px 10px;
  min-width: 300px;
  overflow-x: hidden;
}

#conatinerSchliessenButton{
  display: flex;
  justify-content: left;
  height: 5rem;
  max-width: 98%;
  padding: 10px 10px 10px 0px;
  margin: 0px;
  overflow-x: hidden;
  font-size: inherit;
}

#schliessenButton {
  display: flex;
  align-items: center; /* Zentriert die Elemente vertikal */
  justify-content: center;
  min-width: 8.0rem;
  height: 3.5rem;
  background-color: blue;
  color: #FFF;
  font-size: inherit;
}


.kommandoLink {
  position: absolute;
  z-index: 0;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center; /* Zentriert die Elemente vertikal */
  justify-content: center;
  background-color: inherit;
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
}


.kommandoLink:focus {
  background-color: yellow;
  color: black;
}


table {
  border-collapse: collapse;
  margin: 0px 0px 0px 0px;
  font-size: inherit;
  width: 100%; /* Die Tabelle nimmt die volle Breite des Containers ein */
  table-layout: fixed; /* Verhindert, dass die Tabelle ihre Breite basierend auf dem Inhalt anpasst */
}

th, td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
}

td {
  position: relative; 
  white-space: pre-line;
  min-height: 15rem;
  height: 16rem;
  width: 50%;
  word-wrap: break-word;
}


th {
  background-color: #D3D3D3;
  color: black;
}

tbody tr:nth-child(odd) {
  background-color: #04195C;
  color: white;
}



ul,ol{margin-bottom: 20px;}
.ulAllgemein li{
  margin-left: 20px;
}

.listeInHilfe li {
  margin: 0px 0px -20px 20px; /* Ihre spezifische Regel */
  padding: 0px;
}

/*                      M e d i a  Q u e r i e s */
@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1) { 

    #response {
      height: 75vh;
    }

    iframe{
      width: 60%;
      height: calc(.5625 * 60vw);
    }
}

/* Barrierefreiheit */
#submitButton:focus, 
#hilfeButton:focus,
#schliessenButton:focus {
  background-color: yellow;
  color: black;
}
