/* General page styling */
body {
    background-color: #f6f6ef;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 2rem auto;
    max-width: 700px;
  }
  
  /* Link styling */
  a {
    color: #0000ff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Listing titles */
  .listing-title {
    font-weight: normal;
    padding: 0.5rem 0;
    display: block;
  }
  
  /* Navbar styling */
  .navbar {
    background-color: #d6d6d6; /* Hacker News orange */
    padding: 0.5rem 1rem;
    font-size: 14px;
    border-bottom: 1px solid #d6d6d6;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .navbar-title {
    color: #000000 !important;
    font-weight: bold;
  }
  
  .navbar-nav .nav-link {
    color: #000000 !important;
    margin-right: 1rem;
  }
  
  .navbar-nav .nav-link:hover {
    text-decoration: underline;
  }
  