#floating-chat-bubble {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.bubble-bottom {
    --size: 100px; /* Adjust bubble size */
    position: absolute;
    width: var(--size);
    height: calc(var(--size) * 0.66);
    background: #333;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(var(--size) * 0.25);
    font-weight: bold;
    text-align: center;
    bottom: 0;
    animation: floatUp 6s linear, fadeOut 6s ease-in-out forwards;
}

.bubble-bottom:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: calc(var(--size) * 0.13) solid transparent;
    border-top-color: #333;
    border-bottom: 0;
    margin-left: calc(var(--size) * -0.13);
    margin-bottom: calc(var(--size) * -0.13);
}

@keyframes floatUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100vh);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
