.table-container{
    max-width: 1200px;
    margin:0 auto;
}



.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;
}


/* Breadcrumb Styling */
.breadcrumb {
    font-family: 'Arial', 'Open Sans', sans-serif; /* Clean sans-serif font */
    font-size: 13px; /* Slightly smaller than body text */
    font-weight: 400; /* Regular weight for subtlety */
    font-style: italic; /* Adds differentiation */
    color: #666666; /* Neutral gray for secondary emphasis */
    letter-spacing: 0.5px; /* Slight spacing for clarity */
}

.breadcrumb a {
    color: #0073e6; /* Link color for contrast */
    text-decoration: none; /* Remove underline for cleaner look */
}

.breadcrumb a:hover {
    text-decoration: underline; /* Add underline on hover for usability */
}

.breadcrumb .active {
    color: #333333; /* Darker color for current page */
    font-weight: 600; /* Slightly bolder for emphasis */
}

#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%;
  }
}
