.openai-response {
    margin-bottom: 24px;
    font-family: Montserrat, Arial, sans-serif;
}

/* Header */
.openai-response .entry-title {
    background-color: #141989;
    color: #FFFFFF;
    font-size: 20px;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    margin: 0;
}

/* Body container */
.openai-response .ai-formatted {
    background-color: #FFFFFF;
    color: #222222;
    font-size: 16px;
    line-height: 1.55;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

/* Paragraph spacing */
.ai-formatted p {
    margin-bottom: 1em;
}

/* Headings inside content */
.ai-formatted h1,
.ai-formatted h2,
.ai-formatted h3 {
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

/* Lists */
.ai-formatted ul,
.ai-formatted ol {
    margin-left: 20px;
    margin-bottom: 1em;
}

.ai-formatted ul {
    list-style: disc;
}

.ai-formatted ol {
    list-style: decimal;
}

/* Blockquote styling */
.ai-formatted blockquote {
    border-left: 4px solid #141989;
    padding-left: 12px;
    margin: 1em 0;
    color: #555;
    font-style: italic;
}

/* Inline code */
.ai-formatted code {
    background: #f2f2f2;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* Optional subtle container shadow */
.openai-response {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}