#chat-container {
  z-index: 3;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 400px;
  height: 70%;
  border-radius: 10px;
  box-shadow: 1px 1px 20px black;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(239, 234, 226);
}

#messages {
  overflow-y: scroll;
  flex-grow: 1;
  padding: 1rem 1rem;
}

.p-container {
  width: 70%;
  word-wrap: break-word;
}

.message {
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  max-width: max-content;
}

.sent {
  background-color: rgb(217, 253, 211);
  margin-left: auto;
}

.received {
  background-color: rgb(255, 255, 255);
  margin-right: auto;
}

#message-area {
  height: 2rem;
  width: 100%;
  overflow-y: hidden;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  color: var(--bs-gray-dark);
  margin-right: 1rem;
}

.textarea-image {
  border-radius: 20px;
  background-color: var(--bs-gray-400);
  padding: 0.2rem;
  transform: rotate(180deg);
  width: 2rem;
  height: 2rem;
}

#enter-number {
  margin-top: auto;
  margin-bottom: auto;
  padding: 1rem;
}

#chat-send-container {
  padding: 1rem;
  background-color: white;
}

#chat-heading {
  border: 1px solid transparent;
  border-bottom-color: black;
  z-index: 3;
  background-color: white;
  padding: 0.7rem;
}