/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
  }
  
  .info-container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  header {
    text-align: center;
    border-bottom: 2px solid #000000;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 2.5em;
    margin: 0;
    color: #000000;
    word-wrap: break-word; /* Allow breaking long words */
    overflow-wrap: break-word; /* Break long words for modern browsers */
    white-space: normal; /* Allow line wrapping */
  }

  /* Adjustments for smaller screens */
  @media (max-width: 550px) {
    header h1 {
      font-size: 2.0em; /* Reduce font size for narrower screens */
    }
  }
  
  header p {
    font-size: 1rem;
    color: #555;
  }
  
  nav {
    margin-top: 10px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #007bff;
    margin: 0 10px;
  }
  
  .nav-link:hover {
    text-decoration: underline;
  }
  
  main section {
    margin-bottom: 20px;
  }
  
  main section h2 {
    font-size: 1.5rem;
    color: #000000;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  
  main section p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  main section a {
    color: #007bff;
    text-decoration: none;
  }
  
  main section a:hover {
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
  }

  th, td {
    padding: 15px;
    text-align: center;
  } 

  .scroll-table {
    overflow-x: scroll;
    display: block;
  }
