body {
      font-family: "Didact Gothic", "sans-serif";
      margin: 20px;
      background-color: #ffffff;
      color: #5E7244;
    }
/* Container als Blockelement */
#container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Zentriert die Kinder horizontal */
  justify-content: center; /* Optional: Zentriert die Kinder vertikal */
}
/* Beide Bereiche 70% Breite und untereinander */
#viewerColumn,
#formColumn {
  width: 70%;
  margin-bottom: 20px;
}
    #stlViewer {
      width: 100%;
      height: 400px;
      border: 1px solid #ddd;
      border-radius: 5px;
    }
    label {
      font-weight: bold;
      margin-top: 10px;
      display: block;
    }
    select, input, button {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    button {
      background-color: #5E7244;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 16px;
    }
     input[type="text"],
    textarea,
    select {
      width: 100%;
      padding: 8px;
      box-sizing: border-box;
    button:hover {
      background-color: #218838;
    }
    #priceOutput {
      font-size: 20px;
      font-weight: bold;
      text-align: center;
      margin-top: 15px;
      color: #333;
    }
    #customerInfo {
      display: none;
      margin-top: 20px;
      border-top: 1px solid #ccc;
      padding-top: 20px;
    }
  .info-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  margin-left: 5px;
}

.tooltip-text {
  display: none;
  position: absolute;
  width: 200px;
  background-color: #555;
  color: #fff;
  padding: 5px;
  border-radius: 6px;
  text-align: center;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.info-icon:hover .tooltip-text,
.info-icon:focus .tooltip-text {
  display: block;
}