/* Reusable Markdown Content Styling for Dark Mode */

.markdown-content {
    max-width: none;
}

.markdown-content h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.markdown-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.markdown-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.markdown-content p {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.markdown-content ul,
.markdown-content ol {
    color: #d1d5db;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.markdown-content li {
    margin: 0.5rem 0;
}

.markdown-content a {
    color: #60a5fa;
    text-decoration: none;
}

.markdown-content a:hover {
    text-decoration: underline;
}

.markdown-content strong {
    color: #fff;
    font-weight: 600;
}

.markdown-content em {
    color: #e5e7eb;
}

.markdown-content code {
    color: #f472b6;
    background-color: #374151;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', Courier, monospace;
}

.markdown-content blockquote {
    border-left: 4px solid #a67c3d;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #9ca3af;
    font-style: italic;
}

.markdown-content hr {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #4b5563, transparent);
    margin: 2rem 0;
}

.markdown-content pre {
    background-color: #1f2937;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.markdown-content pre code {
    background: transparent;
    padding: 0;
    color: #e5e7eb;
}

.markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.markdown-content th,
.markdown-content td {
    border: 1px solid #4b5563;
    padding: 0.75rem;
    text-align: left;
}

.markdown-content th {
    background-color: #374151;
    color: #fff;
    font-weight: 600;
}

.markdown-content td {
    background-color: #1f2937;
    color: #d1d5db;
}
