@page {
  size: letter;
  margin: 0in;
}

html {
  font-size: 11pt;
}

a[href]::after {
  content: "";
}

section {
  page-break-inside: avoid;
}

header {
  padding: 0.5in;
}

header {
  padding-bottom: 0.5rem;
}

.header-info {
  margin-top: 0;
}

main,
aside,
footer {
  padding: 2rem;
}

main {
  padding-left: 0.5in;
  padding-bottom: 0.5in;
}

aside {
  padding-right: 0.5in;
  padding-bottom: 0.5in;
}

.page-header,
.page-footer {
  background: var(--header-footer-bg-color)
}

.flex-responsive {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

aside {
  border-top: none;
  border-left: 1px solid var(--border-color);
}

aside h1 {
  font-size: 1.4rem;
}

aside h2 {
  font-size: 1.1rem;
}

aside h3 {
  font-size: 1rem;
}

aside h4 {
  font-size: 1rem;
}

aside h5 {
  font-size: 1rem;
}

aside h6 {
  font-size: 1rem;
}

.page-content .container {
  grid-template-columns: 2fr 1fr;
}

.header-top {
  gap: 2rem;
}

.page-header ul {
  margin: 0.5rem 0;
}

.inline-list {
  flex-direction: row;
  justify-content: center;
  gap: var(--spacing-inline);
}

.inline-list li:not(:last-child)::after {
  content: "|";
  margin-left: var(--spacing-inline);
  color: var(--tag-text-color);
}

/* Updated Styling for the Download PDF Button in the Sidebar */
.download-button {
  display: block; /* Change to block to allow full width */
  width: 100%; /* Make it fill the sidebar width */
  box-sizing: border-box; /* Ensures padding is included in the width */
  margin-bottom: 2rem; /* Add space between the button and the section below */
  padding: 12px 20px;
  background-color: var(--link-color, #0077cc);
  color: #fff !important;
  text-decoration: none;
  text-align: center; /* Center the text inside the button */
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.download-button:hover {
  background-color: var(--link-color-hover, #00487c);
  text-decoration: none;
}