.ui-autocomplete {
            max-height: 300px;
            overflow-y: auto;
            overflow-x: hidden;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 1000;
            font-family: 'Arial', sans-serif;
         }
         
         .ui-menu-item {
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
         }
         
         .ui-menu-item:last-child {
            border-bottom: none;
         }
         
         .ui-menu-item .ui-menu-item-wrapper {
            padding: 12px 15px;
            color: #333;
            font-size: 14px;
            line-height: 1.4;
            border: none;
            background: none;
         }
         
         .ui-menu-item .ui-menu-item-wrapper:hover,
         .ui-state-active .ui-menu-item-wrapper {
            background: linear-gradient(135deg, #667eea 0%, #1084ce 100%);
            color: #fff;
            border-radius: 4px;
            margin: 2px;
            transform: translateY(-1px);
         }
         
         /* No Results Message */
         .ui-autocomplete .no-results {
            padding: 20px 15px;
            text-align: center;
            color: #666;
            font-style: italic;
            background: #f8f9fa;
            border-radius: 4px;
            margin: 5px;
         }
         
         .ui-autocomplete .no-results i {
            font-size: 24px;
            color: #ccc;
            margin-bottom: 8px;
            display: block;
         }
         
         /* Loading indicator */
         .autocomplete-loading {
            position: relative;
         }
         
         .autocomplete-loading::after {
            content: '';
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
         }
         
         @keyframes spin {
            0% { transform: translateY(-50%) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg); }
         }
         
         /* Input field enhancement */
         .autocomplete-input {
            transition: all 0.3s ease;
         }
         
         .autocomplete-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
         }