

#floating-icon {
    position: fixed; bottom: 60px; right: 20px; z-index: 9999;border:1px; border-radius: 50%; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
    height: 60px;          /* Set the height of the container */
    width: 60px;           /* Optional: Set the width of the container */
  
}

#floating-icon img {
    padding:15px;
    margin-top:15px;
    max-width: 100%; /* Ensures the image scales within the container */
    max-height: 100%; /* Ensures the image scales within the container */
}
.top-right {
    position: absolute; /* Position relative to the nearest positioned ancestor (.container) */
    top: 0;             /* Align to the top of the parent */
    right: 0;           /* Align to the right of the parent */
    
    color: Black;        /* Optional: Text color */
    padding: 5px 10px;  /* Optional: Add padding for aesthetics */
    border-radius: 3px; /* Optional: Add rounded corners */
    font-size: 14px;    /* Optional: Adjust font size */
}