.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;
}



/* Set your brand blue here (update this to match the logo) */
:root {
  --brand-blue: #1E73BE;          /* ← tweak this hex to match your logo */
  --brand-blue-hover: #195fa0;    /* slightly darker for hover */
}

/* Base button */
.btn {
  display: inline-block;
  padding: 10px 16px;
  background-color: var(--brand-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;            /* rounded corners like your image */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  line-height: 1;                 /* compact vertical rhythm */
  text-align: center;
  white-space: nowrap;            /* keep “Video Replay” on one line */
  border: none;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}
.btn:hover { background-color: var(--brand-blue-hover); }

/* Smaller size variant */
.btn--sm {
  padding: 8px 14px;              /* smaller padding */
  font-size: 14px;                /* smaller font */
  border-radius: 10px;            /* slightly tighter radius */
  min-width: 120px;               /* optional; ensures consistent width */
}

/* Optional: make buttons align nicely in a table cell */
.table-actions {
  display: flex;
  justify-content: flex-end;      /* push to right side in table */
  gap: 10px;                      /* spacing between buttons */
}



/* Mobile screens: add left/right padding */
@media screen and (max-width: 1280px) {
  .table-container {
    margin: auto 10%;
  }
}
