/* === CHAT.CSS : Styles du chatbot et des onglets === */

/* Onglets d'analyse (trader/investisseur) */
.tab-button {
    padding: 0.75rem 1rem;              /* Espace interne */
    cursor: pointer;                    /* Curseur main */
    border-bottom: 3px solid transparent; /* Bordure inactive */
    color: #9cabba;                     /* Couleur texte inactif */
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}
.tab-button:hover { color: #fff; }      /* Hover blanc */
.tab-button.active {
    color: #0c7ff2;                     /* Actif bleu */
    font-weight: 700;
    border-bottom-color: #0c7ff2;       /* Bordure active */
}

/* Bulle de message du chat */
.chat-message-bubble {
    display: block;
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    max-width: 100%;
}
.chat-message-bubble p, .chat-message-bubble ul { margin-bottom: 0.75rem; }
.chat-message-bubble ul { padding-left: 1rem; list-style-type: disc; } 