/* Light Theme */
:root {
    --background: #d5ffd8;
    --text: #084106;
    --link: #080;
    --link-hover: #084106;
    --accent-1: #98f29f;
    --accent-2: #080;
    --accent-3: #007a00;
}

/* Dark Theme */
@media (prefers-color-scheme: dark) {
    :root {
    --background: #163a1e;
    --text: #ddd;
    --link: #bce8c2;
    --link-hover: #bce8c2;
    --accent-1: #335e36;
    --accent-2: #bce8c2;
    --accent-3: #72d17a;
}
}

/* Navigation */
.nav-item a[href$="/search/"],
.nav-item a[href$="/about/"],
.nav-item a[href$="/archive/"],
.nav-item a[href$="/replies/"],
.nav-item a[href$="/photos/"],
.nav-item a[href$="/books/"],
.nav-item a[href$="/blogroll/"] {
  text-indent: -9999px;
  display: inline-block;
  line-height: 1;
}
.nav-item a[href$="/search/"]::after {
  content: "\e30c";
  color: var(--accent-3);
  font-family: "Phosphor";
  text-indent: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  line-height: 0;
}
.nav-item a[href$="/about/"]::after {
  content: "\e4c4";
  color: var(--accent-3);
  font-family: "Phosphor";
  text-indent: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  line-height: 0;
}
.nav-item a[href$="/archive/"]::after {
  content: "\e00c";
  color: var(--accent-3);
  font-family: "Phosphor";
  text-indent: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  line-height: 0;
}
.nav-item a[href$="/replies/"]::after {
  content: "\e024";
  color: var(--accent-3);
  font-family: "Phosphor";
  text-indent: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  line-height: 0;
}
.nav-item a[href$="/photos/"]::after {
  content: "\e836";
  color: var(--accent-3);
  font-family: "Phosphor";
  text-indent: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  line-height: 0;
}
.nav-item a[href$="/books/"]::after {
  content: "\e758";
  color: var(--accent-3);
  font-family: "Phosphor";
  text-indent: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  line-height: 0;
}
.nav-item a[href$="/blogroll/"]::after {
  content: "\e73c";
  color: var(--accent-3);
  font-family: "Phosphor";
  text-indent: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  line-height: 0;
}

/* Legacy Comment Section */
details {
    padding: 7px;
    padding-left: 10px;
    background-color: var(--accent-1);
    border: 1px dashed var(--text);
    margin-left: 2px;
    border-radius: var(--border-radius);
    overflow: hidden;
}
summary {
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
details hr {
    border: 1px dashed var(--text);
}
details[open] > summary {
    border-bottom: none;
}
details[open] > summary .toot {
    margin: 0;
    border-top: 1px dashed var(--text);
    border-bottom: 1px dashed var(--text);
}