#toggleAIBubble {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

#toggleAIBubble:hover {
    background-color: rgba(78, 115, 223, 0.1);
}

#toggleAIBubble i {
    transition: transform 0.3s ease;
}

#toggleAIBubble:not(.text-gray-500) i {
    transform: rotate(360deg);
}