/* Chatbot Markdown Styling */
.message.bot p,
.message.bot ul,
.message.bot ol {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    /* Matches p */
    color: #111111;
    /* Matches p */
    font-weight: 400;
}

.message.bot ul,
.message.bot ol {
    margin-left: 20px;
    /* Indent lists */
    padding: 0;
}

.message.bot p:last-child {
    margin-bottom: 0;
}



.message.bot li {
    margin-bottom: 4px;
}

.message.bot strong {
    font-weight: 700;
    color: var(--primary-blue);
}

.message.bot a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.message.bot h1,
.message.bot h2,
.message.bot h3,
.message.bot h4 {
    margin: 8px 0 4px 0;
    font-size: 1rem;
    font-weight: 700;
}

.message.bot code {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.message.bot pre {
    background: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 8px 0;
}