
/* Basic Markdown Styles (fallback/enhancement for prose) */
.prose pre {
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}

.prose code {
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.dark .prose code {
    background-color: inherit;
    color: inherit;
}

.prose pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
}

.prose a {
    text-decoration: underline;
}

.dark .prose a {
    color: inherit;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-top: 1em;
    margin-bottom: 1em;
}

.prose ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin-top: 1em;
    margin-bottom: 1em;
}

.prose blockquote {
    border-left: 4px solid #e5e7eb; /* gray-200 */
    padding-left: 1em;
    font-style: italic;
}

.dark .prose blockquote {
    border-left-color: #4b5563; /* gray-600 */
}

.prose img {
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    margin-bottom: 1em;
}

.prose th, .prose td {
    border: 1px solid #e5e7eb; /* gray-200 */
    padding: 0.5rem;
    text-align: left;
}

.prose th {
    font-weight: 600;
}

/* Interactive Icons */
[onclick], button i, a i {
    cursor: pointer;
}

[onclick]:hover, button:hover i, a:hover i {
    opacity: 0.8;
}
