/* Đồng bộ font cho dropdown Autocomplete với trang */
.ui-widget,
.ui-autocomplete,
.ui-menu,
.ui-menu .ui-menu-item-wrapper {
  font-family: inherit !important;   /* Kế thừa font từ body / Bootstrap */
  font-size: inherit !important;     /* Kế thừa kích thước chữ */
  line-height: 1.42857143;           /* Đồng bộ line-height với Bootstrap 3 */
}

/* Tinh chỉnh UI để giống dropdown của Bootstrap */
.ui-autocomplete {
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 4px;
  padding: 4px 0;
}

.ui-menu .ui-menu-item-wrapper {
  padding: 6px 12px;
  color: #333;
}

/* Item đang hover/active, giống :hover của Bootstrap dropdown */
.ui-state-active,
.ui-menu .ui-menu-item-wrapper.ui-state-active {
  color: #262626 !important;
  border: none !important;
}