diff --git a/citywalls2/public/stylesheets/styles.css b/citywalls2/public/stylesheets/styles.css index 7171ddd..25fa6b5 100644 --- a/citywalls2/public/stylesheets/styles.css +++ b/citywalls2/public/stylesheets/styles.css @@ -113,4 +113,25 @@ th { .centered { justify-content: center; /* Центрирование по горизонтали */ margin: 20px 0; /* Отступы сверху и снизу */ +} + +.suggestions-list { + position: absolute; + background: white; + border: 1px solid #ccc; + max-height: 150px; + overflow-y: auto; + width: calc(100% - 20px); + margin-top: 2px; + padding: 0; + list-style: none; +} + +.suggestion-item { + padding: 10px; + cursor: pointer; +} + +.suggestion-item:hover { + background: #f0f0f0; } \ No newline at end of file