  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #212121;
    color: #333;
    line-height: 1.6;
  }

  .background-container {
  position: fixed;
  inset: 0;
  width: 100vw;
    background: black; /* Same as .title */
  height: 100vh;
  background: linear-gradient(
    90deg,
    var(--tertiary-hover) 0%,
    var(--tertiary) 100%
  );
  clip-path: ellipse(148% 70% at 91% -14%);
  pointer-events: none;
  z-index: 2;
}


 .title {
   display: block;
   max-width: 100% !important;
   background-color: black;
   border-radius: 0px !important;
   padding: 3;
   margin: 0px;
 }

 /* Keep the image aligned to the left */
 .title a {
     display: flex;
     align-items: left;
 }


  .title-curve {
    width: 100vw; /* Full page width */
    height: 200px; /* Increase height for a deeper curve */
    background: black; /* Same as .title */

    /* Override global div styles */
    margin: 0;
    max-width: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;

  clip-path: path("M0,0 H2000 V300 C700,10 25,90 0,100 Z");
  /* clip-path: ellipse(148% 70% at 91% -14%);*/
    z-index: 2;
}



/* Keep the image aligned to the left */
.title a {
    display: flex;
    align-items: left;
}

  .logo-big {
    width: 200px !important;
    height: auto !important; /* Maintains aspect ratio */
    margin: 2px;
     display: block;
}


  h1, h2 {
    text-align: center;
    margin: 1rem 0;
    color: white !important;
  }

  /* Ensure the content container does not have excessive margins */
  div {
    margin: 1rem auto;
    max-width: 1200px;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto; /* Enable horizontal scrolling for tables */
  }

  /* Ensure tables remain responsive */
  table {
    width: 100%;
    border-collapse: collapse;
  }

  th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  th {
    background-color: #f4f4f4;
  }

  a {
    color: #007bff;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  /* Formatting for the "neo-man-page" section */
  #neo-man-page {
    padding: 1rem;
    background-color: #f4f4f4;
    border-radius: 5px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.95rem;
    color: #222;
  }

  #neo-man-page-output {
    white-space: pre; /* No wrapping */
    overflow-x: auto; /* Horizontal scrollbar if necessary */
  }

  .neo-man-caps {
    text-transform: uppercase;
    font-weight: bold;
    margin: 1rem 0;
    color: #444;
  }

  b {
    color: #555;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      font-size: 0.9rem;
    }

    div {
      padding: 0.5rem; /* Reduce padding for smaller screens */
      margin: 0 auto; /* Ensure centering */
      width: 98%; /* Take up most of the screen width */
      max-width: none; /* Remove max-width constraint */
    }


    #neo-man-page {
      font-size: 0.85rem;
    }

    table {
      width: 100%;
    }

  h1, h2 {
    text-align: center;
    margin: 1rem 0;
    font-size: 99%;
    color: white !important;
  }
    th, td {
      padding: 6px;
    }

    p strong {
      width: 80px;
    }
  }

