/* Style the navigation menu */
nav.header-nav {
  background-color: green;
}

nav.header-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  overflow: hidden;
}

nav.header-nav ul li {
  /* float: left; */
}

nav.header-nav ul li a {
  color: white;
  display: block;
  /* margin-left: 1em; */
  padding-left: 1em;
  padding-right: 1em;
  /* padding: 5px 5px; */
  /* text-decoration: none; */
  /* width: 60px; */
}

nav.header-nav ul li a:hover {
  background-color: #111;
}

@media (max-width: 600px) {
  nav.header-nav ul {
    justify-content: center; /* Center items horizontally on small screens */
  }
  nav.header-nav ul li a {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}


blockquote p {
  display: inline;
}

#content h1[id],
#content>h2[id],
#content>h3[id],
#content>h4[id],
#content>h5[id],
#content>h6[id] {
  position: relative;
}

#content h1[id]:hover::before,
#content>h2[id]:hover::before,
#content>h3[id]:hover::before,
#content>h4[id]:hover::before,
#content>h5[id]:hover::before,
#content>h6[id]:hover::before {
  opacity: 1;
}


.anchor-link::before {
  content: "¶";
  position: absolute;
  top: 0;
  left: -24px;
  /* Adjust as needed */
  width: 12px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.anchor-link:hover::before {
  opacity: 1;
}

div.pick {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #eee;
  background-color: white;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
  margin-bottom: 1rem;
}

.pick:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

h2.pick-title {
  font-size: 2.1rem;
}


.footnotes li p {
  display: inline;
  margin: 0;
}
