/* Typeahead */
.typeahead-wrap {
    position: relative;
    margin-bottom: .75rem;
}

.typeahead-input {
    width: 100%;
    padding: .5rem .75rem;
    border: 1.5px solid #e2e5ee;
    border-radius: 9px;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    background: #fff;
    color: #1a1a2e;
}
.typeahead-input:focus { border-color: #7c3aed; }

.typeahead-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: -50%;
    background: #fff;
    border: 1.5px solid #e2e5ee;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    list-style: none;
    margin: 0; padding: .3rem 0;
    z-index: 100;
    max-height: 260px;
    overflow-y: auto;
}

.typeahead-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
    padding: .45rem .85rem;
    cursor: pointer;
    font-size: .88rem;
    transition: background .12s;
}
.typeahead-item:hover,
.typeahead-item.active {
    background: #f0f1ff;
}

.typeahead-id {
    font-size: .75rem;
    color: #999;
    white-space: nowrap;
}

.typeahead-empty {
    padding: .55rem .85rem;
    font-size: .85rem;
    color: #aaa;
    font-style: italic;
}

.typeahead-error {
    padding: .55rem .85rem;
    font-size: .85rem;
    color: #dc2626;
}
