.snd-popup {
    display: none;
    position: fixed;
    z-index: 100000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;

}

.snd-popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: snd-fadeIn 0.3s ease;
   
}

@keyframes snd-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.snd-close {
    
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.snd-close:hover,
.snd-close:focus {
    color: black;
    text-decoration: none;
}

.snd-link-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

#snd-link {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

#snd-copyBtn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background : rgb(255, 56, 56);
    color: white;
    border: none;
    border-radius: 4px;
}

#snd-copyBtn:hover {
    background-color: #ee7777;
}

.snd-copy-message {
    margin-top: 20px;
    color: green;
    font-size: 16px;
    display: none;
    text-align: center;
}