.chat-input-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
}
.chat-input-wrapper .chat-input-border-gradient {
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(169.44deg, rgb(33, 189, 184) 0%, rgb(40, 6, 132) 100%);
  background-size: 200% 200%;
}
.chat-input-wrapper .chat-input-border-gradient.animated-border {
  animation: gradient-animation 3s ease infinite;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.chat-input-wrapper .chat-input-container {
  background-color: #1e1f20;
  border-radius: 24px;
  border-radius: calc(24px - 1px);
  padding: 12px 16px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  /* Change to column layout */
  align-items: stretch;
  /* Stretch to fill width */
  gap: 8px;
  /* Gap between textarea and buttons */
  gap: 10px;
  transition: background-color 0.2s;
  border: none;
}
.chat-input-wrapper .chat-input-container:focus-within {
  background-color: rgb(34.935483871, 36.1, 37.264516129);
}
.chat-input-wrapper .chat-input-container .actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.chat-input-wrapper .chat-input-container .actions-row .right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-input-wrapper .chat-input-container .action-btn {
  background: transparent;
  border: none;
  color: #e3e3e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.chat-input-wrapper .chat-input-container .action-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.chat-input-wrapper .chat-input-container .action-btn i {
  font-size: 1.2rem;
}
.chat-input-wrapper .chat-input-container .action-btn.btn-send {
  color: #a8c7fa;
}
.chat-input-wrapper .chat-input-container .action-btn.btn-send.disabled {
  color: #8e918f;
  cursor: default;
}
.chat-input-wrapper .chat-input-container .action-btn.btn-send.disabled:hover {
  background-color: transparent;
}
.chat-input-wrapper .chat-input-container .chat-textarea {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #e3e3e3;
  font-size: 1rem;
  line-height: 1.5;
  padding: 8px 0 8px 10px;
  resize: none;
  min-height: 24px;
  outline: none;
  overflow-y: hidden;
}
.chat-input-wrapper .chat-input-container .chat-textarea::placeholder {
  color: #8e918f;
}
.chat-input-wrapper .input-footer {
  padding: 6px 16px 0;
  font-size: 0.75rem;
  color: #8e918f;
  text-align: center;
}
.chat-input-wrapper .input-footer a {
  color: #e3e3e3;
  text-decoration: underline;
}

.chat-page-layout {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 85px);
  justify-content: flex-end;
  padding-bottom: 100px;
}
/*# sourceMappingURL=maps/chat-input.css.map */
