/**
 * CockpitOS Light - Chatbot Follow-Up Button Styles
 * 
 * Verantwortlichkeit: Styling für Follow-up Buttons
 * 
 * @package CockpitOS_Light_Theme
 * @version 1.0.0
 */

.chatbot-follow-up-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    margin-top: 0.75rem;
    background: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 0.5rem;
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.chatbot-follow-up-button:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chatbot-follow-up-button:active {
    transform: translateY(0);
}

.chatbot-follow-up-button svg {
    transition: transform 0.2s ease;
}

.chatbot-follow-up-button:hover svg {
    transform: translateX(2px);
}

/* In Multi-Intent Sections */
.cockpit-os-chatbot-cards-section .chatbot-follow-up-button {
    align-self: flex-start;
}

/* Mobile */
@media (max-width: 768px) {
    .chatbot-follow-up-button {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
}


