/* This makes the bot look like a button you can press */
#ai-bot {
    cursor: pointer;
    transition: transform 0.2s;
}

#ai-bot:active {
    transform: scale(0.9); /* Shrinks slightly when you tap it */
}

#bot-bubble {
    pointer-events: none; /* So the bubble doesn't block your tap */
}
