/ 1. Hide the blue paragraph symbol entirely /
.headerlink {
display: none !important;
visibility: hidden !important;
opacity: 0 !important;
pointer-events: none !important;
}

/ 2. Make the titles look and act like links /
h1, h2, h3, h4 {
cursor: pointer;
transition: color 0.2s ease;
}

/ 3. Change the color when the user hovers over the title /
h1:hover, h2:hover, h3:hover, h4:hover {
color: #0078d4; / #0078d4 This was a professional blue; feel free to change the hex code, using ll_orange: #D8602F /
text-decoration: underline; / Optional: adds an underline on hover for clarity /
}

.md-content__link {
display: none !important;
}

.md-typeset [id] > :last-child {
display: none !important;
}

.indented-table table {
margin-left: 40px !important; / This creates the indentation /
width: auto !important; / Keeps the table from stretching to full width /
}