/* ==========================================================================
   HELP BOT CHAT STYLES (UPDATED)
   ========================================================================== */

.bot-msg-bubble-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
  width: 100%;
  animation: fadeIn 0.3s ease;
}

.bot-bubble-text {
  background: #e9ecef;
  color: #333;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 2px;
  max-width: 85%;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.user-msg-bubble-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
  width: 100%;
  animation: fadeIn 0.3s ease;
}

.user-bubble-text {
  background: #007bff; /* আপনি চাইলে আপনার ওয়েবসাইটের থিম কালার দিতে পারেন */
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px 14px 2px 14px;
  max-width: 85%;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
