body {
    font-family: Questrial, Helvetica, sans-serif, sans-serif;
    background-color: #000000;
    padding: 20px;
    text-align: center;
    /* Center align content horizontally */
  }

  h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
  }

  h2 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #a5a5a5;
  }

  form {
    max-width: min(90%, 800px);
    margin: 0 auto;
    /* Center the container horizontally */
    padding: 30px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #000000;
  }

  label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
    color: #a5a5a5;
  }

  input[type="text"],
  input[type="date"],
  input[type="datetime-local"],
  input[type="number"],
  textarea {
    width: calc(100% - 12px);
    padding: 8px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #000000;
    /* border-radius: 4px; */
    font-size: 16px;
    box-sizing: border-box;
    color: #ffffff;
  }

  input[type="text"]:focus,
  input[type="date"]:focus,
  input[type="datetime-local"]:focus,
  input[type="number"]:focus,

  textarea:focus {
    outline: none;

    border-color: #6e91f6;
    /* box-shadow: 0 0 8px rgba(110, 145, 246, 0.5); */
  }

  input[type="text"]::placeholder,
  input[type="date"]::placeholder,
  input[type="datetime-local"]::placeholder,
  input[type="number"]::placeholder,
  textarea::placeholder {
    font-family: Questrial, Helvetica, sans-serif;
    /* Specify the font */
    color: #a5a5a5;
    /* Placeholder text color */
  }

  button {
    display: block;
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
  }

  button:hover {
    background-color: #141414;
  }

  .activity {
    border: 1px solid #ccc;
    border-radius: 5px;
    /* border-radius: 4px; */
    padding: 10px;
    margin-bottom: 20px;
  }

  .activity-content {
    display: none;
  }

  #output {
    max-width: min(90%, 800px);
    hight: 300px;
    margin: 0 auto;
    /* Center the container horizontally */
    padding: 30px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #000000;
    text-align: left;
    /* Align text content left within the box */
    display: inline-block;
    /* Display as inline-block to center */
  }

  .signatory {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .signatory-fields {
    flex: 1;
    margin-right: 10px;
  }

  .activity {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .activity-fields {
    flex-basis: calc(50% - 10px);
    margin-bottom: 10px;
  }

  .people-involved {
    width: 100%;
  }

  .person-involved {
    display: flex;
    justify-content: space-between;
  }

  .person-fields {
    flex-basis: calc(50% - 10px);
  }

  p {
    max-width: min(90%, 800px);
    margin: 0 auto;
    /* Center the container horizontally */
    padding: 10px;
    background-color: #000000;
    font-size: 10px;
  }