diff --git a/styles.css b/styles.css index 746ead2..12d1352 100644 --- a/styles.css +++ b/styles.css @@ -598,16 +598,21 @@ } .map-search-results { - display: none; margin-top: 4px; max-height: 200px; overflow-y: auto; border-radius: 6px; background: var(--background-secondary); + opacity: 0; + transform: translateY(-8px); + pointer-events: none; + transition: opacity 0.2s ease, transform 0.2s ease; } .map-search-results.visible { - display: block; + opacity: 1; + transform: translateY(0); + pointer-events: all; } .map-search-result-item {