/* کانتینر اصلی چت */
.chat-wrapper {
  max-width: 420px;
  height: 650px;
  margin: auto;
  background: #ece5dd;
  display: flex;
  flex-direction: column;
  font-family: IRANSans, Tahoma;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* هدر چت */
.chat-header {
  background: #075e54;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  text-align: center;
  flex-shrink: 0;
}

/* بدنه چت */
.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 5px; /* فاصله بین پیام‌ها */
}

/* پیام خوش‌آمدگویی */
.welcome-msg {
  text-align: center;
  background: #fff;
  color: #333;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  font-family: IRANSans;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* استایل کلی پیام */
.msg {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  position: relative;
  word-wrap: break-word;
  line-height: 1.4;
}

/* پیام‌های کاربر (سمت راست) */
.msg.me {
  background-color: #dcf8c6;
  align-self: flex-start;
  border-bottom-right-radius: 0; /* ظاهر حباب پیام */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* پیام‌های دیگران (سمت چپ) */
.msg.other {
  background-color: #fff;
  align-self: flex-end;
  border-bottom-left-radius: 0; /* ظاهر حباب پیام */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* فوتر چت */
.chat-footer {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f0f0f0;
  border-top: 1px solid #ddd;
  position: relative; /* برای موقعیت دهی پنل ایموجی */
}

/* باکس متن */
.chat-footer textarea {
  flex: 1;
  resize: none;
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 14px;
  background: #fff;
  outline: none;
  margin-left: 10px;
}

/* دکمه‌های فوتر */
.chat-footer button {
  background: #128c7e;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

/* دکمه ارسال (بیضی شکل) */
#BTN_SEND {
  width: 50px;
  height: 35px;
  border-radius: 20px; /* شکل بیضی */
  font-size: 16px;
  margin-left: 8px;
}

#BTN_SEND:hover {
  background: #075e54;
}

/* دکمه میکروفون و ایموجی */
#BTN_RECORD, #BTN_EMOJI {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* دایره */
  font-size: 18px;
  margin-left: 5px;
  background: transparent;
  color: #555;
}

#BTN_RECORD:hover, #BTN_EMOJI:hover {
  background: #e0e0e0;
}

/* وضعیت و زمان پیام */
.msg-status {
  display: inline-block;
  font-size: 11px;
  margin-right: 4px;
  vertical-align: middle;
}

.time {
  display: inline-block;
  font-size: 10px;
  color: #999;
  margin-top: 4px;
  vertical-align: middle;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.emoji-btn {
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
}

.emoji-btn:hover {
    background-color: #f0f0f0;
}
 