/* Article specific blocks */
.article-body {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Fira Code', monospace;
  line-height: 1.6;
  font-size: 1.1em;
  color: #ddd;
}

.article-body h4 {
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: 'Fira Code', monospace;
  font-size: 1.3em;
}

.article-body ul { margin-bottom: 20px; }
.article-body li { margin-bottom: 10px; }

/* Article navigation */
nav.article-nav {
  background-color: transparent;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  display: block; /* Changed from flex to block */
}

/* Remove global prefix arrow from article navigation links */
nav.article-nav a::before { content: none; }

.nav-link {
  color: #007bff;
  text-decoration: none;
  font-family: 'Fira Code', monospace;
  font-weight: bold;
  font-size: 0.95em;
  padding: 6px 10px;
  transition: color 0.3s;
}

.nav-link:hover { color: #0056b3; text-decoration: underline; }

h1 { margin-bottom: 40px; color: #fff; font-family: 'Fira Code', monospace; }

/* Custom styles for article navigation links on separate lines */
nav.article-nav .prev-link {
    display: block; /* Ensure it takes its own line */
    text-align: left; /* Align to the left */
    margin-bottom: 10px; /* Space between the links */
}

nav.article-nav .next-link {
    display: block; /* Ensure it takes its own line */
    text-align: right; /* Align to the right */
}