header {
  padding: unset;
}
table {
  width: 100%; /* Make the table try to fill its container */
  border-collapse: collapse; /* Optional: for cleaner borders */
}
table th {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.table-container {
  overflow-x: auto; /* This is the magic! */
  width: 100%; /* Ensure the container takes full width */
}
.formdates {
   justify-content: center;
   align-items: center;
   text-align: center;
}
.mobile-break {
  display: none;
}

.red, .green, .black {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.green {
  color:green;
}
.red{
  color:red;
}
.black {
  color:black;
}

/* responsive */
@media screen and (max-width: 991px) {
    h1  {
      font-size: 2em;
        color:black;
    }
    h3  {
      font-size: 1.5em;
        color:black;
    }
    p { 
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1em;
  }
   .mobile-break {
     display: inline; /* or display: block; depending on desired behavior */
    }
    
    table, tbody, tr {
    display: block; /* Make table, tbody, and tr behave like blocks */
  }

  table td {
    display: block; /* Make table cells behave like blocks */
    /* width: 50%; /* Make each cell take full width */
    box-sizing: border-box; /* Include padding in width */
    margin-bottom: 10px; /* Add space between stacked cells */
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* Optional: Remove any padding/borders that don't look good when stacked */
  table td:last-child {
    margin-bottom: 0; /* No margin after the last stacked cell */
  }

  /* If you had specific column widths, they will be overridden by width: 100% */
}
}
