@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee {
  display: flex;
  width: 200%;
  animation: scroll 25s linear infinite;
}

.marquee__group {
  display: flex;
  gap: 7rem;
  flex: 0 0 50%;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.sr-left {
  opacity: 0;
  transform: translateX(-30px);
}

.sr-right {
  opacity: 0;
  transform: translateX(30px);
}

#questionInput:empty:before {
  content: attr(data-placeholder);
  color: #9ca3af;
  pointer-events: none;
  display: block;
}

#chatContainer {
  flex-grow: 1; /* Take remaining space */
  overflow-y: auto;
  padding-bottom: 1rem; /* Ensure space above the prompt */
}

#prompt {
  width: 100%;
  position: relative;
  bottom: 0;
}

#questionInput {
  width: 100%;
  min-height: 2rem;
  max-height: 10rem;
  overflow-y: auto;
}
