.hide-autocomplete .pac-container {
	display: none !important;
}

.autocomplete-dropdown {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 100000;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}

.autocomplete-dropdown.show {
    display: block;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.autocomplete-item:first-of-type {
    padding-right: 30px;
}

.autocomplete-item:hover {
    background-color: #f5f5f5;
}

.autocomplete-item:not(:hover) {
    background-color: #fff;
}

.autocomplete-item strong {
    display: block;
    margin-bottom: 2px;
}

.autocomplete-item small {
    color: #666;
    font-size: 0.9em;
}

.autocomplete-dismiss {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: #999;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.autocomplete-dismiss:hover {
    color: #333;
}