#ollama-chat-container {
    border: 1px solid #ccc;
    padding: 10px;
    max-width: 500px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    color: #000;
}

#ollama-chat-box {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 5px;
    margin-bottom: 10px;
    background: #f9f9f9;
    color: inherit;
}

/* force all inner elements */
#ollama-chat-container * {
    color: inherit;
}

/* question */
.chat-question {
    font-weight: bold;
    margin: 5px 0;
}

#ollama-chat-input, #ollama-chat-container button {
    font-size: 20px;

/* answer */
.chat-answer {
    margin: 5px 0;
}

/* input + button font size */
#ollama-chat-input,
#ollama-chat-container button {
    font-size: 12px;
}

/* headings override */
#ollama-chat-container h1,
#ollama-chat-container h2,
#ollama-chat-container h3,
#ollama-chat-container h4,
#ollama-chat-container h5,
#ollama-chat-container h6 {
    color: #000 !important;
}