1.fuzzysearch-input { 2 padding: 8px !important; 3 width: 100% !important; 4 max-width: 300px !important; 5 border: 1px solid #ccc !important; 6 border-radius: 4px !important; 7 font-size: 14px !important; 8} 9 10.fuzzysearch-results { 11 list-style: none !important; 12 padding: 0 !important; 13 margin: 10px 0 !important; 14 max-height: 200px !important; 15 overflow-y: auto !important; 16} 17 18.fuzzysearch-results li { 19 padding: 8px !important; 20 background-color: #f9f9f9 !important; 21 border-bottom: 1px solid #ddd !important; 22} 23 24.fuzzysearch-results li:hover, 25.fuzzysearch-results li.highlighted { 26 background-color: #e9e9e9 !important; /* Highlighted item */ 27 cursor: pointer !important; 28} 29 30.fuzzysearch-results a { 31 text-decoration: none !important; 32 color: #007bff !important; 33 display: block !important; /* Ensure link fills the li */ 34} 35 36.fuzzysearch-results a:hover { 37 text-decoration: underline !important; 38} 39