.my-chatbox #toggleButton i {
    font-size: 30px;
    /* Set icon size */
}


.my-chatbox #toggleButton {
    font-family: 'Nunito', sans-serif;
    z-index: 1234568;
    font-weight: 400;
    font-size: 100%;
    background: #0d6efd;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    /* background: white; */
    border: none;
    outline: none;
    /* border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px; */
    border-radius: 50px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding-top: 13px;
}



.my-chatbox #hello {
    font-family: 'Sora', sans-serif;
    z-index: 1234568;
    font-weight: 400;
    font-size: 80%;
    background: #F1F1F1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5px;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    /* border-radius: 20px; */
    border-radius: 50px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    margin-bottom: 20px;
    position: fixed;
    /* Add this */
    bottom: 70px;
    right: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    opacity: 1;
    transition: bottom 0.5s;
    animation: bubbleAnimation 1.5s ease-out forwards;
}

.my-chatbox .hello.show {
    bottom: 20px;
}

@keyframes bubbleAnimation {
    0% {
        transform: translateX(0%) translateY(-50px);
    }

    60% {
        transform: translateX(0%) translateY(10px);
    }

    100% {
        transform: translateX(0%) translateY(0);
    }
}



.my-chatbox #close-button {
    font-size: 120%;
}

.my-chatbox #myFrame {
    display: none;
    position: fixed;
    bottom: 65px;
    right: 0px;
    width: 400px;
    height: 500px;
    padding: -100px;
    border: none;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    display: none;

}

.my-chatbox #myFrame.active {
    display: block;
    opacity: 1;
    z-index: 1234568;
}

.my-chatbox span {
    font-weight: 200px;
    color: rgb(47, 47, 47);
}