.message { border-bottom: 1px solid #ddd; padding: 10px 0; }
.author { font-weight: bold; margin-bottom: 5px; }
.content { margin-bottom: 10px; }
img { max-width: 100%; height: auto; border-radius: 5px; margin-top: 5px; }
.image-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 8px;
	margin-top: 10px;
}
.image-grid img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}
pre {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto; /* Enables horizontal scrolling */
    max-width: 100%; /* Ensures it does not exceed the container */
    white-space: pre-wrap; /* Allows wrapping for long code */
    word-wrap: break-word;
}

code {
    font-family: monospace;
    color: #333;
}

.markdown-container{
	text-align: left;
}