/**
 * Alfred Markdown — styles partagés pour les rendus markdown Alfred
 * (V0.8 phase 3 Sprint 2).
 *
 * Classes appliquées par js/alfred-markdown.js :
 *   - .chatbot-image  → image inline (200×200 cover par défaut)
 *   - .chatbot-link   → lien externe vers savoor.fr (souligné)
 *   - <strong>        → simple gras
 *
 * Chargé partout où alfred-markdown.js est utilisé :
 *   - Bloc Alfred ma-cuisine2 overview
 *   - Cooking lightbox panneau Alfred
 *   - Q&A ingredient.php
 *
 * Les styles sont scopés par le sélecteur du conteneur parent (ex.
 * `.alfred-bloc-chat-response img.chatbot-image`) dans les CSS spécifiques
 * de chaque surface si un tuning est nécessaire. Ce fichier porte la base.
 *
 * @author  Savoor.fr
 * @version V0.8 phase 3 Sprint 2 (2026-04-27)
 */

img.chatbot-image {
    display: block;
    width: 200px;
    height: 200px;
    max-width: 200px;
    border-radius: 10px;
    margin: 14px 0 8px;
    object-fit: cover;
}

a.chatbot-link {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}
a.chatbot-link:hover { color: #1d4ed8; }

body.dark-mode a.chatbot-link { color: #8ab4ff; }
body.dark-mode a.chatbot-link:hover { color: #b3c8ff; }
