/* Hide site name in left sidebar to show only logo */
.md-sidebar--primary .md-sidebar__scrollwrap .md-sidebar__inner > .md-nav--primary > .md-nav__title {
    display: none !important;
}

/* Darker background for dark mode */
[data-md-color-scheme="slate"] {
    --md-default-bg-color: #1a1a1a;
    --md-default-bg-color--light: #1f1f1f;
    --md-default-bg-color--lighter: #242424;
    --md-default-bg-color--lightest: #2a2a2a;
}

/* Make navigation section titles much more visible */
.md-nav__item--section > .md-nav__link {
    font-weight: 700 !important;
    color: var(--md-default-fg-color) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    opacity: 0.9 !important;
    margin-top: 1rem !important;
}

/* Keep regular navigation links lighter and smaller */
.md-nav__item:not(.md-nav__item--section) > .md-nav__link {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.7rem;
}

/* Make the active link stand out */
.md-nav__link--active {
    font-weight: 500 !important;
    opacity: 1 !important;
}

/* Reduce body text font size and line spacing */
.md-typeset {
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
}

/* Adjust paragraph spacing */
.md-typeset p {
    margin-bottom: 0.8em !important;
}

/* Adjust heading sizes proportionally */
.md-typeset h1 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
}

.md-typeset h2 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
}

.md-typeset h3 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.4rem !important;
}

.md-typeset h4 {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.4rem !important;
}

/* Adjust list spacing */
.md-typeset ul,
.md-typeset ol {
    line-height: 1.5 !important;
}

.md-typeset li {
    margin-bottom: 0.4em !important;
}
