body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f4f4f4;
} 

.parameter-input {
  display: block;
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  margin-top: 4px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

label {
  font-size: 12px;
	letter-spacing: 1.5px;
	color: #13613d;
}

.parameter-input {
	height: 40px;
	border-radius: 6px;
	box-shadow: 0 4px 8px 0 rgba(44, 39, 56, 0.04);
	padding: 8px 16px;
}

.container {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
    }

 .box {
      flex: 0.8; /* Box nimmt 80% der Breite ein */
      margin: 10px;
      padding: 1px;
      display: flex;
      justify-content: center; /* Horizontale Zentrierung von box2 */
      align-items: center; /* Vertikale Zentrierung von box2 */

    }

    .box2 {
      flex: 0.2;
      padding: 15px;
      
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .box2_inlet {
      width: 100%;
background: white;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
 /* Media Query für kleine Bildschirme (z.B. Handys) */
@media (max-width: 150px) {
  .box, .box2 {
    flex: 0 0 100%; /* Auf kleinen Bildschirmen nimmt jede Box 100% der Breite ein */
    margin: 10px 0; /* Vertical margin für mobilen Abstand */
  }
}

#iframeImpressum {
  display: none; /* Das div ist zunächst versteckt */
  margin: 10px;
  background: white;
  width: 12%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

a {
  font-size: 13px;
	letter-spacing: 1.5px;
  color: #13613d;
}