.container {
    font-family: sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#searchInput {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#searchResults {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
}

.result-item {
    padding: 8px;
    border-bottom: 1px dotted #eee;
}

.result-item:last-child {
    border-bottom: none; /* Remove border from last item */
}

.result-item strong {
    font-weight: bold;
}
