/* Hides the list item containing the syllabus link */
#section-tabs li:has(#syllabus-link) {
    display: none !important;
}

/* Fallback if your theme doesn't support :has */
#syllabus-link {
    display: none !important;
}
/* Set base font size for everything */
* {
  font-family: verdana, sans-serif !important;
  font-size: 100%;
}

/* Set font size for paragraphs */
p {
  font-size: 110%;
}

/* Ensure only the first level of lists after paragraphs matches the paragraph size */
p + ul,  
p + ol {
  font-size: 110% !important; /* Matches paragraph size */
}

/* Prevent nested lists from increasing in size */
p + ul ul,  
p + ol ol,  
p + ul ol,  
p + ol ul {
  font-size: 100% !important;
}

/* Ensure navigation menu stays at 110% */
#section-tabs,
#section-tabs .section,
#section-tabs ul,
#section-tabs li {
  font-size: 110% !important;
}

/* Ensure summary attribute stays at 110% */
summary {
  font-size: 110% !important;
  font-family: inherit;
}

/* Additional styling for headings */
h2 {
  font-size: 200%;
}

h3 {
  font-size: 160%;
}

h4 {
  font-size: 140%;
}