body {
  background: #fafafa;
  color: #333333;
  margin-top: 5rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

ul {
  margin: 0;
}

.bg-steel {
  background-color: #5f788a;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.article-title {
  color: #444444;
}

a[target="_blank"]:not(:has(img)) {
  background-image: url("/static/svg/external-link.42e75a6a3a7c.svg");
  background-repeat: no-repeat;
  background-position: top right;
  padding-right: 1.2em;
  size: 0.5em;
}

a.article-title:hover {
  color: #428bca;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.snow {
  border: 1px solid rgba(255, 255, 255, 0.0);
  background-image: url("/static/svg/snow.33d5a34aede2.svg");
  background-position: 0px 0px;
  animation: animatedBackground 12s linear infinite;
}

.snow nav {
  width: auto;
  height: auto;
  background-image: url("/static/svg/snow2.97d56b432847.svg");
  background-position: 0px 0px;
  animation: animatedBackground 21s linear infinite;
}

@keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0px 300px;
  }
}

.rain {
  border: 1px solid rgba(255,255,255,0);
  background-image: url("/static/svg/rain.4f1c86604a95.svg");
  background-repeat: repeat;
  background-size: 50px 50px;
  animation: rainFall 8s linear infinite;
}
.rain nav {
  width: auto;
  height: auto;
  background-image: url("/static/svg/rain.4f1c86604a95.svg");
  background-position: 0px 0px;
  animation: animatedBackground 21s linear infinite;
}

@keyframes rainFall {
  0%   { background-position: 0 0; }
  100% { background-position: 0 300px; }
}


  /* Keep images proportional like before */
  span img {
    max-width: 100%;
    height: auto !important;
  }

  /* Restore the search bar styles (mobile accordion + desktop expansion) */
  .search-bar {
    --size: 34px;
    --padding: 0px;
    --expanded-width: 250px;
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    border-radius: 100px;
    outline: 1px solid white;
    overflow: hidden;
    padding: var(--padding);
    margin-inline: auto;
    width: var(--size);
    height: var(--size);
    max-width: 100%;
    transition: width 0.5s, outline 0.5s;
  }
  @media (max-width: 600px) {
    .search-bar:focus-within {
      width: var(--expanded-width);
      outline: 1px solid #3a3a3a;
    }
  }
  @media (min-width: 601px) {
    .search-bar {
      width: var(--expanded-width);
      outline: 1px solid #3a3a3a;
    }
  }
  .search-input {
    font-size: 14px;
    color: #3a3a3a;
    background-color: transparent;
    border: none;
    outline: none;
    margin-inline: 1rem;
    flex: auto;
    width: 100%;
  }
  .search-submit {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    background-color: #28a745;
    border-radius: 50%;
    border: none;
    width: calc(var(--size) - var(--padding) - var(--padding));
    aspect-ratio: 1;
    cursor: pointer;
  }

  /* Navbar logo links */
  .logo-link {
    display: block;
    text-indent: -9999px;
    overflow: hidden;
  }
  .logo-img {
    display: block;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

