
  #mobileButton {
    display: none;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    /* position: fixed;
    bottom: 20px;
    right: 20px; */
    z-index: 9999; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

  #desktopButton {
    display: block;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    /* position: fixed;
    bottom: 20px;
    right: 20px; */
    z-index: 9999; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Use multiple media queries for better device detection */
@media only screen and (max-width: 767px) {
    #mobileButton {
        display: block !important;
    }
    #desktopButton {
        display: none !important;
    }
    .mobileMessage {
        display: block !important;
    }
    .desktopMessage {
        display: none !important;
    }
        }