.autocomplete-host {
    position: relative;
}

.autocomplete-menu {
    position: absolute;
    z-index: 50;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    max-height: 240px;
    overflow-y: auto;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.autocomplete-item:hover,
.autocomplete-item.is-active {
    background: rgba(148, 163, 184, 0.15);
}

.autocomplete-label {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-badge {
    flex: none;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    font-weight: 600;
}
