.content-container {
    max-width: 800px;
}
.content-container h2 {
    scroll-margin-top: 100px;
}
.toc-link:hover {
    color: #16a34a;
    border-left-color: #22c55e;
}
.toc-link.active {
    color: #16a34a;
    border-left-color: #22c55e;
    font-weight: 600;
}

/* Prose styles for text content */
.prose {
    max-width: 65ch;
    line-height: 1.75;
}

.prose h2 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose ul {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose > :first-child {
    margin-top: 0;
}

.prose > :last-child {
    margin-bottom: 0;
}

/* Table of Contents sticky positioning */
.toc-container {
    position: sticky;
    top: 32px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}