/* General styles for the chat button container */
.bheema_ccw-chat-button {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

    .bheema_ccw-chat-button:hover {
        transform: scale(1.1);
        opacity: 1;
    }

/* Chat button icon styles */
.bheema-ccw-icon {
    width: 60px; /* Default size */
    height: 60px; /* Default size */
    max-width: 100%;
    /*     border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .bheema-ccw-icon:hover {
        /*     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); */
        transform: rotate(10deg);
    }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .bheema-ccw-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .bheema-ccw-icon {
        width: 45px;
        height: 45px;
    }
}

/* Optional animation */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bheema_ccw-chat-button {
    animation: fadeInUp 0.5s ease-out;
}
