 .chat-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);
}

.chat-inputs textarea {
  flex-grow: 1;
  resize: none;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition: border 0.2s ease;
}

.chat-inputs textarea:focus {
  border-color: #4a90e2;
}

.chat-inputs-controls {
  display: flex;
  align-items: center;
}

.chat-input-send-button {
  background-color: #4a90e2;
  border: none;
  padding: 10px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-input-send-button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}