/* ... previous styles ... */

/* Chat CTA Buttons */
.chat-cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.chat-cta-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #6e8efb;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 5px rgba(110, 142, 251, 0.3);
}

.chat-cta-btn:hover {
    background-color: #5d7ce8;
    transform: translateY(-1px);
}

.chat-cta-btn:active {
    transform: translateY(0);
}

.message strong {
    font-weight: 700;
    color: #000;
}