.copy-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.copy-message-content {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.copy-message-content i {
    color: #ff0000;
    font-size: 30px;
    margin-bottom: 10px;
}

.copy-message-content p {
    font-size: 20px;
    margin: 0;
}

.prevent-copy-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prevent-copy-content {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    text-align: center;
}

.prevent-copy-content p {
    font-size: 20px;
    margin: 0;
}