body > div > div > div.navbar.navbar-inverse > div > div.navbar-collapse.collapse > ul > li:nth-child(1) {
display:none;
}
body > div > div > div.marginBottom > button {
    display:none;
}
body {
    padding-bottom: 0px!important;
}
.body-content {
    padding-left: 0px!important;
    padding-right: 0px!important;
    padding-bottom: 0px!important;
}
#contentareaOGkkprt > div:nth-child(1) {
    margin-right: 0px!important;
}
#contentareaOGkkprt > div:nth-child(2) {
    margin-right: 0px!important;
}
body > div > div > div.brand-footer.brand-footer-bg.footer-image {
    margin-right: 0px!important;
}
.main-form.delayed-component-content {
    box-shadow: none!important;
    max-width: none!important;
}
.body-content {
    background-color: #ffffff!important;
}
body > div > div > div.brand-footer.brand-footer-bg.footer-image {
    margin-right: -16px!important;
}
body > div > div > div.navbar.navbar-inverse > div {
    max-width: none!important;
}
/* =============================================================
   APS & ISPP 2027 — Program Page Custom Styles
   File: program-style.css

   Apply via EventsAir portal > Custom CSS field.

   Session colours are set per-session in the EventsAir backend
   and output as inline styles — no colour rules needed here.

   This file handles:
     - Page background & typography
     - Day heading styling
     - Table layout, spacing & border-radius
     - Room header (th) styling
     - Time column styling
     - Break / meal row de-emphasis (uncoloured cells)
     - Link styles & hover states
     - Legend block (inserted via program-legend.html)
============================================================= */


/* ── Page background & base typography ─────────────────────── */
body {
  background-color: #f4f4f2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: #111;
}


/* ── Day headings (EventsAir renders these as <h3>) ─────────── */
h3 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 28px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #022c46;
  line-height: 1.2;
}


/* ── Schedule tables ────────────────────────────────────────── */
/*
   Scoped to table.table-bordered so these rules only apply to the
   program schedule grid. EventsAir outputs the program grid as
   <table class="table table-bordered">, while detail page tables
   have no class — so this is the reliable differentiator.

   border-collapse: separate is required for border-radius on
   <td> cells to render. The 3px gap creates the card-grid effect.
*/
table.table-bordered {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 3px !important;
  margin-bottom: 32px;
}

/* Strip any borders that EventsAir or Bootstrap may add */
table.table-bordered,
table.table-bordered th,
table.table-bordered td {
  border: none !important;
  box-shadow: none !important;
}


/* ── Room header cells ──────────────────────────────────────── */
table.table-bordered tbody tr th {
  font-size: 9px;
  font-weight: 600;
  color: #111;
  text-align: center;
  padding: 6px 4px;
  background-color: transparent !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-radius: 6px;
  vertical-align: middle;
}


/* ── Time column (first <td> in every body row) ─────────────── */
table.table-bordered tbody tr td:first-child {
  font-size: 9.5px;
  color: #555;
  font-weight: 400;
  vertical-align: top;
  padding: 6px 8px 0 0;
  white-space: nowrap;
  min-width: 80px;
  background-color: transparent !important;
}


/* ── Session cells ───────────────────────────────────────────── */
/*
   Border-radius and padding applied to all non-time cells.
   Background colour comes from EventsAir's inline styles.
   The white fallback covers breaks and any uncoloured items.
*/
table.table-bordered tbody tr td:not(:first-child) {
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  vertical-align: middle;
  border-radius: 6px;
  background-color: #ffffff; /* fallback; overridden by EventsAir inline colour */
  color: #111;
}

/* Empty filler cells (rooms not running at that time) */
table.table-bordered tbody tr td:not(:first-child):empty {
  background-color: transparent !important;
}


/* ── Break / meal rows ───────────────────────────────────────── */
/*
   Cells with text but no <a> link are assumed to be breaks or
   admin items. They won't have an EventsAir colour so the white
   fallback above applies; this rule just softens the text.
*/
table.table-bordered tbody tr td:not(:first-child):not(:has(a)):not(:empty) {
  font-size: 10px;
  font-weight: 400;
  color: #666;
}


/* ── Links inside session cells ─────────────────────────────── */
table.table-bordered tbody tr td a {
  color: inherit;
  text-decoration: none !important;
  display: block;
}

table.table-bordered tbody tr td:has(a) {
  cursor: pointer;
}


/* ── Legend block ────────────────────────────────────────────── */
/*
   Styles for the .program-legend block (program-legend.html).
   Insert that file as a Custom HTML element above the tables.
*/
.program-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background-color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 11.5px;
  color: #111;
}

.program-legend__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.program-legend__col-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #999;
  margin-bottom: 2px;
}

.program-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.program-legend__swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  display: inline-block;
  box-sizing: border-box;
}
.marginBottom a {
    text-decoration: none!important;
}
a:any-link {
    text-decoration: none!important;
}