/* BirForum Mentions + Dropdown - isolated classes (Tailwind-safe) */

/* Mention autocomplete menu */
.bfmention-menu{
  background:#111827;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:6px;
  min-width:240px;
  max-width:360px;
  box-shadow:0 12px 34px rgba(0,0,0,.45);
  font-family: Arial, sans-serif;
  font-size:13px;
  color:#fff;
}
.bfmention-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
}
.bfmention-row:hover,
.bfmention-row.active{ background:rgba(255,255,255,.10); }
.bfmention-avatar{
  width:26px;
  height:26px;
  border-radius:999px;
  object-fit:cover;
  flex:0 0 auto;
}
.bfmention-name{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bfmention-nomatch{ padding:10px; opacity:.85; }

/* Header bell badge */
.bfmention-badge{
  /*position:absolute;*/
  top:3px;
  right:3px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  line-height:18px;
  display:none; /* JS will show if >0 */
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* Header dropdown container */
.bfmention-dd{
  width:340px;
  max-height:420px;
  overflow:auto;
  background:#111827;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  box-shadow:0 14px 40px rgba(0,0,0,.55);
  color:#fff;
  font-family: Arial, sans-serif;
  font-size:13px;
}
.bfmention-dd-head{
  padding:10px 12px;
  font-weight:800;
  border-bottom:1px solid rgba(255,255,255,.10);
  opacity:.95;
}
.bfmention-dd-loading,
.bfmention-dd-empty{
  padding:14px 12px;
  opacity:.85;
}
.bfmention-dd-list{ padding:6px; }
.bfmention-dd-item{
  display:flex;
  gap:10px;
  padding:10px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
}
.bfmention-dd-item:hover{ background:rgba(255,255,255,.08); }
.bfmention-dd-avatar{
  width:34px;
  height:34px;
  border-radius:999px;
  object-fit:cover;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.12);
}
.bfmention-dd-body{ min-width:0; }
.bfmention-dd-line1{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.bfmention-dd-when{ opacity:.75; margin-left:6px; font-size:12px; }
.bfmention-dd-line2{
  margin-top:4px;
  opacity:.9;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
