.floating-btn {
    position: fixed;
    right: 30px;
    z-index: 9999;
    font-size: 18px;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Styling for the first button */
#btn1 {
    bottom: 80px; /* Space from the bottom to separate from the second button */
    background-color: #28a745;
}

#btn1:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Styling for the second button */
#btn2 {
    bottom: 30px; /* The lowest button */
    background-color: #007BFF;
}

#btn2:hover {
    background-color: #0056b3; /* Darker blue on hover */
}