/* =====================================================================
 * TVAC — style dropdown autocomplete (dùng chung)
 * Self-contained: dùng màu literal (không phụ thuộc CSS var của từng trang).
 * Dropdown neo trong phần tử mount (đã position:relative) do JS thêm vào.
 * ===================================================================== */
.tvac-list{
  position:absolute; top:calc(100% + 8px); left:0; right:0; z-index:1000;
  margin:0; padding:6px; list-style:none; text-align:left;
  background:#fff; border:1px solid #e5e1d8; border-radius:12px;
  box-shadow:0 18px 40px -18px rgba(0,0,0,.4);
  max-height:328px; overflow-y:auto; font-family:inherit;
}
.tvac-list[hidden]{ display:none; }

.tvac-item{
  padding:10px 12px; border-radius:8px; cursor:pointer;
  font-size:14.5px; color:#17150f; line-height:1.35;
  display:flex; align-items:center; gap:10px;
}
.tvac-item::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:#e5e1d8; flex:0 0 auto;
}
.tvac-item.is-active,
.tvac-item:hover{ background:#faf8f2; }
.tvac-item.is-active::before{ background:#ffde06; }

.tvac-item mark{ background:#fff0a0; color:inherit; padding:0 1px; border-radius:2px; font-weight:700; }

.tvac-note{ padding:11px 12px; font-size:13px; color:#9c988e; }
