#t--copy-msg {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 1.5rem;
}

#t--copy-msg.show {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#error-message {
    position: fixed;
    bottom: 10rem; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    transition: transform 0.3s ease-in-out;
    background-color: #FF5733; /* Error message color */
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
    z-index: 9999;
    font-size: 1.6rem;
    opacity: 0;
}

#error-message.show {
    display: block;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}


.t--copy-btn,
#click-to-share {
    cursor: pointer;
    transition: transform 0.2s ease; /* Transition for movement effect */
}

.clicked {
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

