/* Styling for internal links */
.ai-link-suggestion { color: #0073aa; text-decoration: underline; cursor: pointer; }
.ai-highlight { background: #fff3cd; }

/* Styling for predictive search (remove for Option 2) */
.ai-search-container { margin-bottom: 20px; position: relative; }
#aiSearchInput { padding: 10px; width: 100%; font-size: 16px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; }
#aiSuggestions { list-style: none; padding: 0; margin: 0; border: 1px solid #ddd; display: none; position: absolute; background: #fff; width: 100%; max-width: 400px; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
#aiSuggestions li { padding: 10px; cursor: pointer; }
#aiSuggestions li:hover { background: #f0f0f0; }

/* Mobile responsiveness (remove for Option 2) */
@media (max-width: 768px) {
    .ai-search-container { padding: 0 10px; }
    #aiSuggestions { max-width: 100%; }
}