/* Style for the search box */ #searchBox { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; } /* Style for the results container */ #resultsContainer { display: none; /* Hidden by default */ position: absolute; top: 100%; /* Position below the search box */ left: 0; width: 100%; max-height: 300px; overflow-y: auto; background: #fff; border: 1px solid #ccc; border-radius: 4px; z-index: 1000; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } /* Style for individual result items */ #resultsContainer div { padding: 10px; border-bottom: 1px solid #eee; cursor: pointer; } #resultsContainer div:hover { background: #f5f5f5; } /* Style for error messages */ .error-msg { color: red; padding: 10px; font-size: 14px; text-align: center; } /* Style for "no results" message */ .note-msg { color: #555; padding: 10px; font-size: 14px; text-align: center; }