/* ═══════════════════════════════════════════════════════════
   style-fixes-v3.css — Jellyfish Final Fix
═══════════════════════════════════════════════════════════ */

/* ══ BUG 1 FIX: Shake বন্ধ ══ */
#msgInp {
  field-sizing: content;
  min-height: 38px;
  max-height: 100px;
  height: 38px;
  overflow-y: hidden;
  transition: none !important;
  resize: none;
}

/* ══ BUG 2 FIX: পুরনো chat ══ */
#chatWin:not(.show) #msgList {
  visibility: hidden;
  pointer-events: none;
}

/* ══ COLOUR FIX: Neon Blue — !important দিয়ে সব override বন্ধ ══ */

/* আমার message — neon blue */
.msg.me .mbub {
  background: linear-gradient(135deg, #0099cc, #0066aa) !important;
  border: 1px solid #00d4ff66 !important;
  border-radius: 18px 4px 18px 18px !important;
  color: #ffffff !important;
  box-shadow: 0 0 14px #00d4ff22, 0 2px 8px #00000055 !important;
}

/* অন্যজনের message — dark navy */
.msg.them .mbub {
  background: linear-gradient(135deg, #0a1e35, #071628) !important;
  border: 1px solid #00d4ff22 !important;
  border-radius: 4px 18px 18px 18px !important;
  color: #d0f0ff !important;
  box-shadow: 0 2px 8px #00000055 !important;
}

/* Send button — neon blue */
.msend {
  background: linear-gradient(135deg, #00aadd, #0077bb) !important;
  box-shadow: 0 0 14px #00d4ff55, 0 2px 8px #00000055 !important;
}

/* ══ BUG 4: pending/failed ══ */
.msg.pending .mbub { opacity: 0.65 !important; }
.msg.failed  .mbub { opacity: 0.80 !important; }
