diff --git a/overrides/main.html b/overrides/main.html
index 413e5d1f26..32e69c4916 100644
--- a/overrides/main.html
+++ b/overrides/main.html
@@ -17,16 +17,47 @@
text-align: right;
}
- /* New center-container to isolate the center content and fully center it */
.center-container {
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
height: 20px;
- /* Adjust as necessary for vertical alignment */
text-align: center;
}
+
+ .floating-button {
+ position: fixed;
+ bottom: 30px;
+ /* Moved to lower bottom */
+ right: 30px;
+ background-color: #000;
+ color: #fff;
+ padding: 10px 20px;
+ border-radius: 50px;
+ display: flex;
+ align-items: center;
+ text-decoration: none;
+ font-weight: bold;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ transition: background-color 0.3s;
+ }
+
+ .floating-button img {
+ margin-right: 8px;
+ width: 24px;
+ height: 24px;
+ }
+
+ .floating-button:hover {
+ background-color: #333;
+ }
+
+ /* Custom styling to hide reCAPTCHA badge */
+ .grecaptcha-badge {
+ visibility: hidden;
+ /* Hides the badge but it remains active */
+ }
{% endblock %}
{% block announce %}
@@ -82,9 +113,18 @@
{{ super() }}
-
- AI-Powered Search
+
+
+ Ask AI
+
+
+
+
+
+
+
+
{% endblock %}
{% block scripts %}
{{ super() }}