/* 飯店搜尋表單 autocomplete（首頁 / hotel / package 共用） */

/* 讓 autocomplete 有卷軸 */
.ui-autocomplete {
    max-height: 500px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: #66a3ff !important;
    font-weight: bold !important;
    color: #ffffff !important;
}

.hotel-autocomplete-type-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 6px;
    font-size: 0.75rem;
    color: #666;
    background: #f0f0f0;
    border-radius: 4px;
    vertical-align: middle;
}

.ui-state-active .hotel-autocomplete-type-tag {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}
