.table-container{
    max-width: 1200px;
    margin:0 auto;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.nav.left { left: 30px; }
.nav.right { right: 30px; }

.custom-line {
    width: 100%;
    height: 4px;              /* Thickness */
    background-color: #003F72;/* Color */
    margin: 10px 0;           /* Optional spacing */
}


.webinar-table {
  width: 90%;
  border-collapse: separate; /* Allows spacing between rows */
  border-spacing: 0 10px;    /* Adds vertical space between rows */
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;               /* Black text for clarity */
}

.webinar-table td {
  padding: 4px 8px;          /* Light padding for readability */
  vertical-align: top;       /* Aligns multi-line text to the top */
}

.webinar-table td:first-child {
  width: 20%;                /* Date column */
}

.webinar-table td:nth-child(2) {
  width: 65%;                /* Topic column */
}

.webinar-table td:last-child {
  width: 15%;                /* Review link column */
  text-align: right;         /* Aligns "Review" to the right */
}

.webinar-table a {
  color: #000;               /* Black link text */
  text-decoration: none;     /* No underline */
}

.webinar-table a:hover {
  text-decoration: underline; /* Underline on hover for clarity */
}

/* Divider line between header and rows */
.custom-line {
  width: 100%;
  height: 1px;
  background-color: #000;    /* Thin black line */
  margin: 10px 0;
}

#disclaimer {
  font-size: 12px;            /* smaller than body */
  text-align: justify;
}


@media screen and (max-width: 1280px) {
  .table-container {
    margin: auto 10%;
  }
}
