Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 44 additions & 18 deletions home.html
Original file line number Diff line number Diff line change
Expand Up @@ -939,32 +939,58 @@ <h3>Drag & Drop to Upload File</h3>
</div>

<style>
/* Back to Top Button Styles */
/* Back to Top Button */
#backToTop {
height: 50px;
width: 50px;
position: fixed;
bottom: 80px;
right: 25px;
z-index: 998;
background: linear-gradient(135deg,#0077b5 ,#4facfe );
color: white;
border: none;
border-radius: 50%;
padding: 15px;
font-size: 18px;
cursor: pointer;
display: none;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.3s ease, opacity 0.3s ease;
position: fixed;
bottom: 20px; /* keep same baseline as chatbot */
right: 90px; /* push left so chatbot sits on the edge */
z-index: 998;
background: linear-gradient(135deg, #0077b5, #4facfe);
color: white;
border: none;
border-radius: 50%;
padding: 15px;
font-size: 18px;
cursor: pointer;
display: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, opacity 0.3s ease;
}

#backToTop:hover {
transform: scale(1.1);
opacity: 0.9;
box-shadow: rgba(0,0,0,0.8);
transform: scale(1.1);
opacity: 0.9;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Chatbot bubble button */
button#chatbase-bubble-button {
position: fixed !important;
bottom: 20px !important; /* same baseline */
right: 20px !important; /* chatbot stays at right corner */
width: 55px !important;
height: 55px !important;
border-radius: 50% !important;
z-index: 2147483647 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}

button#chatbase-bubble-button svg {
width: 28px !important;
height: 28px !important;
}

/* Chat window alignment */
#chatbase-bubble-window {
z-index: 2147483647 !important;
}



@media (max-width: 600px) {
#backToTop {
padding: 12px;
Expand Down