#minimize-button::after {
    cursor: pointer;
    content: "";
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 8%;
    right: 10%;
    width: 16px;
    height: 16px;
    border-bottom: 3px solid #333;
    border-left: 3px solid #333;
}

#chatbox-container {
    bottom: 20px;
    right: 20px;
}

#chatbox {
    width: 400px;
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 770px) {
    .fullscreen {
        position: fixed;
        bottom: -70px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1050;
    }
    #chatbox-container{
        bottom: 0;
        right: 0;
    }
    #chatbox{
        height: 100% !important;
        width: 100% !important;
    }
}

.chat-badge {
    padding: 0.5em 1em;
    font-size: 0.9rem; /* adjust as needed */
}

.dot-typing {
    position: relative;
    left: -9955px;
    top: -38px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #a8a8a8;
    color: #a8a8a8;
    box-shadow: 9984px 0 0 0 #a8a8a8, 9999px 0 0 0 #a8a8a8, 10014px 0 0 0 #a8a8a8;
    animation: dot-typing 2s infinite linear;
}
@keyframes dot-typing {
    0% {
        box-shadow: 9984px 0 0 0 #a8a8a8, 9999px 0 0 0 #a8a8a8, 10014px 0 0 0 #a8a8a8;
    }
    16.667% {
        box-shadow: 9984px -10px 0 0 #a8a8a8, 9999px 0 0 0 #a8a8a8, 10014px 0 0 0 #a8a8a8;
    }
    33.333% {
        box-shadow: 9984px 0 0 0 #a8a8a8, 9999px 0 0 0 #a8a8a8, 10014px 0 0 0 #a8a8a8;
    }
    50% {
        box-shadow: 9984px 0 0 0 #a8a8a8, 9999px -10px 0 0 #a8a8a8, 10014px 0 0 0 #a8a8a8;
    }
    66.667% {
        box-shadow: 9984px 0 0 0 #a8a8a8, 9999px 0 0 0 #a8a8a8, 10014px 0 0 0 #a8a8a8;
    }
    83.333% {
        box-shadow: 9984px 0 0 0 #a8a8a8, 9999px 0 0 0 #a8a8a8, 10014px -10px 0 0 #a8a8a8;
    }
    100% {
        box-shadow: 9984px 0 0 0 #a8a8a8, 9999px 0 0 0 #a8a8a8, 10014px 0 0 0 #a8a8a8;
    }
}
