/* 3. chat-flow.css - Reply Options / Decision UI */

.chat-inline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.chat-inline-option {
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    background: #fdf2f8;
    color: #be185d;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease;
}

.suggestion-chip {
    border: none;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fdf2f8;
    color: #be185d;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease;
}

.chat-inline-option:hover {
    background: #fbcfe8;
    transform: translateY(-2px);
}

.suggestion-chip:hover {
    background: #fbcfe8;
    transform: translateY(-2px);
}