* {
  font-family: "Neo Sans Arabic";
}

body {
  background: rgb(243, 244, 246);
}

.chat-container {
  width: 320px;
  position: fixed;
  right: 10px;
  bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chatroom {
  background: rgb(243, 244, 246);
}

.chatroom .chats .chat {
  background: white;
}

.chatroom .chats .chat:not(.waiting) {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.chatroom .chats .time {
  color: rgba(0, 0, 0, 0.6);
}

.chatroom h3,
.chatroom .input {
  background: linear-gradient(135deg, #822a76, #174191);
}

.chatroom .input input[type="text"] {
  border: 0;
  background-color: white;
}

.chatroom .input input[type="text"]:not(:focus) {
  background-color: #f3f4f6;
}

.chatroom .input input[type="submit"] {
  background-color: #6ab87e;
  border: 0;
  font-weight: bold;
}

.chatroom .input input[type="submit"]:hover {
  background-color: #218838;
}

.chatroom .input input[type="submit"]:active {
  background-color: #1e7e34;
}

.chatroom #speech-input {
  border: 0;
  background: transparent;
}

.chatroom #speech-input:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatroom #speech-input:active {
  background: rgba(255, 255, 255, 0.4);
}
