.table-container {
  display: flex; /* Enables Flexbox for the container */
  gap: 20px; /* Adds space between the columns */
}
.table-column {
  flex: 1; /* Allows columns to grow and shrink equally */
}
table {
  width: 100%; /* Makes tables fill the width of their column */
  border-collapse: collapse;
}
th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}
/* Media query for smaller screens */
@media (max-width: 768px) {
  .table-container {
    flex-direction: column; /* Stacks columns vertically on smaller screens */
  }
}





.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}





img {
  max-inline-size: 100%; /* Ensures the image doesn't exceed its container's width */
  height: auto;          /* **Crucial for maintaining the aspect ratio** */
}







/* --- THE LEFT-ALIGNED & LIFTED HEADER --- */

header[role="banner"] table {
    border: 1px solid #999999 !important;
    border-collapse: collapse !important;
    box-sizing: border-box !important;
    height: 110px !important; 
    width: 100%;
}

header[role="banner"] td {
    height: 110px !important;
    vertical-align: middle !important;
    padding: 0 10px !important; /* Left padding 10px keeps it off the wall */
    border: none !important;
    text-align: left !important; /* RESTORES LEFT ALIGNMENT */
}

header[role="banner"] p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important; 
    text-align: left !important; /* ENSURES TEXT IS LEFT ALIGNED */
}

/* The 'Nudge' Tuning */
header[role="banner"] p:first-child {
    margin-top: 0 !important;      /* Removed the 'push down' */
    margin-bottom: 8px !important;  /* Keep the gap between logos and links */
}

/* Adding a tiny bit of 'lift' from the bottom */
header[role="banner"] td:first-child {
    padding-bottom: 3px !important; /* This nudges the whole group UP slightly */
}

header[role="banner"] img {
    vertical-align: middle !important;
    display: inline-block;
    max-height: 66px !important; 
    width: auto !important;
}