/* KI Eingabefeld */
.ki-input {
  width: 90%;
  min-height: 25vh;       /* flexibel: 25% der Höhe */
  padding: 1rem;
  border: 2px solid #4a90e2;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: "Segoe UI", sans-serif;
  resize: vertical;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* KI Button */
.ki-button {
  margin-top: 8px;
  padding: 8px 16px;
  background: #4a90e2;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}
.ki-button:hover {
  background: #357ab8;
}

/* KI Ausgabe */
.ki-output {
 width: 90%;
  margin-top: 12px;
  padding: 10px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  white-space: pre-wrap;
  font-family: monospace;
}
.ki-content {
  position: relative;
}

.ki-content .sidebar {
  position: absolute;
  top: 50%;                  /* Mitte vertikal */
  right: 0;
  width: 250px;
  height: auto;              /* nur so groß wie Inhalt */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  transform: translateY(-50%) translateX(100%); /* nach oben verschieben + ausgefahren */
  transition: transform 0.3s ease;
  border-left: 1px solid rgba(0,0,0,0.1);
}

.ki-content .sidebar.open.sidebar-right {
  transform: translateY(-50%) translateX(0);    /* eingefahren */
}
