/* PAGE */
.support-page{
  padding-bottom: 180px;   /* 🔑 space for info + input */
}

/* CHAT AREA */
.chat-area{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CHAT ROW */
.chat-row{
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chat-row.user{
  justify-content: flex-end;
}

.chat-row.support{
  justify-content: flex-start;
}

/* AVATAR */
.avatar{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eaf1ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img{
  width: 25px;
  height: 25px;
}

/* MESSAGE BUBBLE */
.bubble{
  max-width: 70%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}

.bubble.blue{
  background: #0b4bb3;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.bubble.gray{
  background: #f1f5f9;
  color: #111;
  border-bottom-left-radius: 4px;
}

/* TIME */
.time{
  font-size: 11px;
  opacity: 0.6;
  margin-top: 4px;
}

/* INFO BOX */
.chat-info{
  margin-top: 20px;
  margin-bottom: 90px;   /* 🔑 input se gap */
  padding: 16px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #c7ddff;
  text-align: center;
}

.chat-info strong{
  display: block;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.chat-info p{
  font-size: 13px;
  color: #2563eb;
  margin: 0;
  line-height: 1.4;
}

/* INPUT BAR */
.chat-input{
  position: fixed;
  bottom: 60px;        /* bottom-nav ke upar */
  left: 0;
  right: 0;
  height: 64px;
  background: #fff;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  border-top: 1px solid #e5e7eb;
  z-index: 50;
}

.chat-input input{
  flex: 1;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 0 14px;
  font-size: 14px;
  background: #f5f5f5;
}

.chat-input button{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: #9db7e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-input button img{
  width: 18px;
  height: 18px;
}
