.interface {
  position: relative;
  width: 100%;
  max-width: 820px;
  height: 260px;
  background-color: white;
  border: 1px solid #b3c9cf;
  border-radius: 15px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  padding: 5px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.interface-text {
  font-size: 24px;
  line-height: 32px;
  color: #212529;
  white-space: pre-line;
  overflow: hidden;
  display: inline-block;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.6em;
  background-color: #4B5A62;
  animation: blinkTextCursor 0.8s steps(2, start) infinite;
  vertical-align: bottom;
  margin-left: 2px;
}

@keyframes blinkTextCursor {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.buttons-container {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.left-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.circle-button, .send-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #b3c9cf;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
}

.circle-button span {
  font-size: 24px;
  color: #ff7819;
}

.circle-button.secondary::before {
  content: '\2022\2022\2022';
  font-size: 18px;
  color: #4B5A62;
}

.send-button {
  background-color: #ff7819;
  transition: transform 0.3s ease-in-out;
  border: none;
}

.send-button svg {
  width: 24px;
  height: 24px;
}

.send-button.pressed {
  animation: pressButton 0.6s ease-in-out;
}

@keyframes pressButton {
  0% { transform: scale(1); }
  50% { transform: scale(0.85); }
  100% { transform: scale(1); }
}

.prompt-ai.alignment-left {
  display: flex;
  justify-content: flex-start;
}

.prompt-ai.alignment-center {
  display: flex;
  justify-content: center;
}

.prompt-ai.alignment-right {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .interface {
    height: 200px; /* oder z. B. 180px – je nach gewünschter Kompaktheit */
    padding: 0px 20px 20px 20px; /* ggf. auch etwas weniger Innenabstand auf Mobile */
  }
  
    .interface-text {
    font-size: 20px;
    line-height: 30px;
  }

  .cursor {
    height: 1.5em; /* etwas kleinerer Cursor passend zur Schrift */
}