.transfer-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.transfer-arrow .arrow-icon {
    color: #059669;
    font-size: 14px;
}

.transfer-source {
    font-weight: 500;
    color: #dc2626;
}

.transfer-dest {
    font-weight: 500;
    color: #059669;
}

.transfer-qty {
    font-weight: 600;
    color: #059669;
    font-size: 14px;
}

.autocomplete-wrapper {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: #f0fdf4;
    color: #059669;
}

.autocomplete-item .item-sku {
    font-size: 12px;
    color: #6b7280;
    margin-left: 6px;
}

.autocomplete-no-results {
    padding: 10px 12px;
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
}
