/* Style for suggestion links */
.suggestion-item {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect for suggestions */
.suggestion-item:hover {
    background-color: #f0f0f0;
    color: #007bff;
    cursor: pointer;
}

/* Styling for the suggestion box */
#suggestions {
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
}
