.places-search-result {
    padding: 8px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    transition: background-color 0.2s;
}
.places-search-result:hover {
    background-color: #f0f0f1;
}
.places-search-result.selected {
    background-color: #007cba;
    color: white;
    border-color: #005a87;
}
.place-result-name {
    font-weight: bold;
    margin-bottom: 3px;
}
.place-result-id {
    font-size: 11px;
    color: #666;
}
.places-search-result.selected .place-result-id {
    color: #ccc;
}
.no-results {
    padding: 10px;
    text-align: center;
    color: #666;
    font-style: italic;
}