
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 3vh; /* Place the button at the bottom of the page */
    right: 1rem; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: 1px transparent; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #0075e9ee;

    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    border-radius: 5px; /* Rounded corners */
    font-size: 20px; /* Increase font size */
    padding: 7px 10px 3px 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
  
#myBtn:hover {
    color: #0075e9ee; /* Set a background color */
    background-color: white; /* Text color */ 
    border: 1px solid #0075e9ee; /* Remove borders */

}