:host {
  display: block;
}

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.input-container {
  width: 100%;
  display: flex;
  gap: 12px;
  background-color: #f5f5f5;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  align-items: flex-end;
}

textarea {
  flex: 1;
  width: 100%;
  border: none;
  background: none;
  padding: 8px;
  outline: none;
  resize: none;
  height: 3rem;
  max-height: 150px;
  line-height: 1.4;
  overflow-y: auto;
  font-size: 0.875rem;
}

/* Custom scrollbar for textarea */
textarea::-webkit-scrollbar {
  width: 6px;
}

textarea::-webkit-scrollbar-track {
  background: transparent;
}

textarea::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

textarea::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

.send-button {
  background-color: #001E57;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 16px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 4px;
}

.send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
