.typeahead-wrapper {
    position: relative;
    display: block;
}

.typeahead-wrapper input {
    width: 100%;
    font-size: 1em;
    font-family: inherit;
    line-height: 1.4;
}

.tt-hint {
    position: absolute;
    top: 0;
    left: 0;
    color: gray;
    font-size: 1em;
}

.tt-input {
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.autocomplete-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff;
    max-height: 150px;
    overflow-y: auto;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.autocomplete-items div {
    padding: 0.5em;
    cursor: pointer;
}

.autocomplete-items div:hover {
    background-color: #f0f0f0;
}

.autocomplete-item.active {
    background: #eee;
    color: #222;
}