#progress_loading {
    position: fixed;
    top: 20%; /* Adjust the distance from the top as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999; /* Ensures it stays above other content */
    display: none; /* Initially hide the spinner */
}

#toastCopiesClipboard {
    color: green;
    /*width: 100%;*/
    text-align: center;
    padding: 10px 50px 10px 50px;
    border: 2px solid #1f9d55;
    background-color: #e1e1e1;
    position: fixed;
    bottom: 10%; /* Adjust the distance from the top as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999; /* Ensures it stays above other content */
    display: none; /* Initially hide the spinner */
    border-radius: 15px;  /* Rounds the corners with a radius of 15px */
    box-shadow: 0 0 10px rgba(42, 100, 150, 0.6); /* Optional glowing effect */
}