/* Shortcode Trigger Button Style */
.chatbot-shortcode-btn {
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chatbot-shortcode-btn:hover {
    transform: scale(1.04) translateY(-2px);
}

.chatbot-shortcode-btn:active {
    transform: scale(0.97) translateY(0);
}

/* Quick replies container */
.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    align-self: flex-start;
    width: 100%;
}

/* Quick reply button */
.chatbot-quick-reply-btn {
    background: white;
    color: #4f46e5;
    border: 1px solid #4f46e5;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.08);
}

.chatbot-quick-reply-btn:hover {
    background: #4f46e5;
    color: white;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.chatbot-quick-reply-btn:active {
    transform: scale(0.95);
}
