/* Стиль уведомления (Toast) о копировании ссылки */
#copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 999999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
}

#copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

#copy-notification i {
    margin-right: 10px;
    color: #4CAF50; /* Зеленый цвет галочки */
}