/* ====== Chat input ====== */
.chat-input-wrapper {
  position: relative;
}
.chat-icons {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  gap: 8px;
}
.chat-icons button,
.chat-icons label {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}
.chat-icons .btn-send {
  background-color: var(--primary-color);
  color: white;
}
.chat-icons .btn-send:hover {
  background-color: var(--primary-hover);
}
.chat-icons .btn-attach {
  background-color: #e0e0e0;
  color: #444;
}
.chat-icons .btn-attach:hover {
  background-color: #bdbdbd;
}