.poi-picker-wrapper { position: relative; }
.poi-picker-input { width: 100%; }
.poi-search-results {
    position: absolute; z-index: 100; background: white;
    border: 1px solid #dee2e6; border-radius: 0.375rem;
    max-height: 300px; overflow-y: auto; width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
}
.poi-search-results.show { display: block; }
.poi-search-result {
    padding: 8px 12px; cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex; justify-content: space-between; align-items: center;
}
.poi-search-result:hover { background: var(--site-accent-light, #fef3c7); }
.poi-search-result:last-child { border-bottom: none; }
.poi-search-result-name { font-weight: 500; }
.poi-search-result-location { font-size: 0.8rem; color: #64748b; }
.poi-card { transition: box-shadow 0.2s; }
.poi-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.poi-clear-btn {
    position: absolute; right: 8px; top: 8px;
    cursor: pointer; color: #94a3b8;
    background: none; border: none; font-size: 1.1rem;
}
.poi-clear-btn:hover { color: #dc3545; }
