diff --git a/web/html/index.html b/web/html/index.html index f435c80d..e9a29ac8 100644 --- a/web/html/index.html +++ b/web/html/index.html @@ -351,6 +351,32 @@ border-top: 1px solid rgba(255, 215, 0, 0.3); padding: 20px 40px; box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3); + position: relative; + } + + .suggestions-container { + display: flex; + flex-wrap: wrap; + gap: 8px; + margin-bottom: 10px; + justify-content: center; + } + + .suggestion-button { + margin: 0 5px; + padding: 6px 10px; + background-color: #ffd700; + color: #0a0e27; + border: none; + border-radius: 6px; + cursor: pointer; + font-size: 12px; + transition: all 0.2s ease; + } + + .suggestion-button:hover { + transform: scale(1.05); + box-shadow: 0 0 8px rgba(255, 215, 0, 0.6); } .input-container { @@ -880,23 +906,13 @@