.ac-input-wrapper {
    /*position: relative;
    display: inline-block;*/
    width: calc(100% - 80px);
    position: relative;
}

.ac-category {
    color: #888;
    font-size: 0.8em;
    font-weight: normal;
}

.ac-input-list {
    position: absolute!important;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 14px;
}

.ac-input-list li {
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-input-list li:hover,
.ac-input-list li.highlight {
    background-color: #f5f7fa;
}

.ac-input-list li strong {
    font-weight: 600;
    color: #0066cc;
}

.ac-icon {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.ac-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ac-icon i {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
    display: inline-block;
}