/* KonnectBot Frontend Styles */
.konnectbot-chat-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999999;
    opacity: 0;
    animation: floatEntrance 1s ease-out 15s forwards;
}

.konnectbot-chat-icon img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.konnectbot-chat-icon.loaded { animation: iconBob 2s ease-in-out infinite; }
.konnectbot-chat-icon.open { transform: rotate(180deg); }
.konnectbot-chat-icon.open img { opacity: 0; }
.konnectbot-chat-icon.open::after {
    content: "×";
    position: absolute;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.konnectbot-chat-container {
    position: fixed;
    z-index: 9999999;
    width: 350px;
    max-height: 70vh;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.konnectbot-chat-container.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* ... [Include all animations and styles from previous answer] ... */

@media (max-width: 480px) {
    .konnectbot-chat-container {
        width: 90%;
        max-width: 350px;
        bottom: 80px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}