#websitebuddyring {
            margin: 0 auto !important;
            width: 300px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-family: MS Gothic;
        }

        #websitebuddyring .wbudimage {
            position: absolute;
            width: 150px;
            bottom: 0;
            right: 0;
            cursor: pointer;
        }

        #websitebuddyring .talk-bubble {
            width: 200px;
            height: 150px;
            background-color: black;
            border-radius: 30px;
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px black solid;
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
        }
        
        #websitebuddyring .talk-bubble.hidden {
        opacity: 0;
        pointer-events: none;
        }

        #websitebuddyring #text-message {
            width: 180px;
            height: 130px;
        }

        #websitebuddyring .links {
            display: flex;
            flex-direction: column;
            padding: 5px;
        }

        #websitebuddyring .links .option {
            font-size: 12px;
            text-decoration: underline;
            font-weight: bold;
            cursor: pointer;
        }
        
        #websitebuddyring .links a {
            all: unset;
        }
        
         #websitebuddyring #text-message .words {
    margin-bottom: 10px;
    padding: 5px;
    max-height: 80px;
    overflow: scroll;
    word-wrap: break-word;
    font-size: 13px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    animation: wbudbobbing 1s ease-in-out infinite;
    animation-direction: alternate;
    }
    
    #websitebuddyring #text-message .words::-webkit-scrollbar {
       display: none;
       }
    
    #websitebuddyring #text-message #tab-b .words {
    margin-bottom: 0px;
    padding: 5px;
    max-height: 60px;
    overflow: scroll;
    word-wrap: break-word;
    height: 25px;
    }
    
     #websitebuddyring #tab-d .words {
    margin-bottom: 0px;
    padding: 5px;
    overflow: scroll;
    word-wrap: break-word;
    height: 80px;
    max-height: none;
    }

        #websitebuddyring .tab {
            display: none;
        }

        #websitebuddyring .tab.active {
            display: block;
        }
        
        @keyframes wbudjump {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.wbudimage.wbudjumping {
    animation: wbudjump 0.5s ease;
}

@keyframes wbudbobbing {
    0% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(-2px);
    }
}