.chat__messageMenu{margin-left:auto;display: flex;align-items: start; width:44px; z-index:100;}
.chat__ctxMenu{position:fixed;top:-9999px;left:-9999px;z-index:10000;min-width:180px;max-width:240px;max-height:60vh;overflow:auto;background:#111;border:1px solid rgba(255,255,255,.08);border-radius:12px;box-shadow:0 20px 50px rgba(0,0,0,.35),0 1px 0 rgba(255,255,255,.03) inset;padding:8px;opacity:0;pointer-events:none;transform:scale(.98);transition:opacity .12s ease,transform .12s ease}
.chat__ctxMenu.is-open{opacity:1;pointer-events:auto;transform:scale(1)}
.chat__ctxItem{display:flex;align-items:center;gap:10px;width:100%;padding:10px 12px;border:0;background:transparent;color:#fff;font-size:14px;line-height:1;border-radius:10px;cursor:pointer}
.chat__ctxItem:hover{background:rgba(255,255,255,.06)}
.chat__ctxIcon{width:18px;height:18px;display:inline-block;flex:0 0 18px}
.chat__ctxItem[data-action="important"].is-on{background:rgba(255,215,0,.12)}
.chat__ctxBackdrop{position:fixed;inset:0;z-index:9999;background:transparent;opacity:0;pointer-events:none;transition:opacity .12s ease}
.chat__ctxBackdrop.is-open{opacity:1;pointer-events:auto}
.chat__messgaePhoto .chat__avatar{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:50%;
}
.chat__messgaePhoto{
        background-color: #f9fafb !important;
}
.chat__messageText{
  margin:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
  max-height:2.8em;
}
.chat__messageText--file{
  display:flex;
  align-items:center;
  gap:6px;
  -webkit-line-clamp:unset;
  -webkit-box-orient:unset;
  overflow:visible;
  text-overflow:clip;
  max-height:none;
}
.chat__fileIcon{
  color:#6b7280;
  line-height:0;
  flex:0 0 18px;
  height:18px;
}
.chat__fileLabel{
  font-size:14px;
  color:#374151;
}

@media (max-width:600px){.chat__ctxMenu{min-width:70vw}}

