/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
    width: auto; 
    border-radius: 5px;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #a10f0f;
    color: white;
  }

  /* Right-aligned section inside the top navigation */
.topnav-right {
    float: right;
  }


  

  .page-content {
    font-weight: bold;
    padding-top: 10px;
    text-align: left;
    color: #5f0b0b;
    margin-top: 1px; /* Add a top margin */
    margin-bottom: 3px; /* Add a top margin */
  }
  
  .page-header {
    float: right;
    color: #5f0b0b;
    margin-top: 1px; /* Add a top margin */
    margin-bottom: 3px; /* Add a top margin */
  }
  
  .login-signup {
    margin: 10px;
    color: #5f0b0b;
    text-decoration: none;
    float: right;
    font-weight: bold;
    
  }




