/* Hide the Table of Contents (Right Sidebar) */
/*.md-sidebar--secondary {
/*  display: none !important;
/*}

/* Optional: Center the content if feel it looks "too wide" */
.md-content { max-width: 900px; margin: 0 left; }

/* Custom "Pill" Header Style */
.pill-header {
  background-color: #2E303E;  /* Dark Grey background */
  /* Alternatively, use your theme color: var(--md-primary-fg-color); */
  
  color: #eff0f3;           /* White text */
  padding: 5px 15px;          /* Breathing room inside the box */
  border-radius: 4px;         /* Rounded corners */
  display: inline-block;      /* Shrink the box to fit the text */
  width: fit-content;         /* Ensure it doesn't stretch full width */
  margin-top: 1.5em;          /* Space above */
  margin-bottom: 0.5em;       /* Space below */
  font-weight: bold;
  font-size: 1em;             /* Adjust size if needed */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Subtle drop shadow */
  border-left: 4px solid var(--md-primary-fg-color); /* Optional: Colored accent bar on left */
}

