/* Styling for sticky container */
.sticky-container {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    right: 0;
    padding-top: 5px;
    padding-left: 0px;
    z-index: 100;
}

/* Styling for the sticky button */
.sticky-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Styling for the download icon */
.sticky-button i {
    margin-right: 5px; /* Adjust the spacing between icon and text as needed */
}

.user-name-sticky {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0; /* Adjust the top position as needed */
    background-color: #fff; /* Set a background color if needed */
    z-index: 100; /* Adjust the z-index as needed */
}