.conference-page {
  font-size: 16px;
}
h1 {
  font-size: 1.4em;
}
.conference-title-link {
  font-size: 26pt;
  color: #fff;
  line-height:36px;
}
/* Editor */
.ells-margin-large {margin-top: 25px;}
.ells-button { padding: 15px; background-color: #efc71f !important; color: black !important; text-decoration: none !important; text-transform: uppercase; font-size: 15px; font-weight: bold;border-radius:50px;}
.ells-button {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ells-button:hover {
  transform: scale(1.05);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 8px 0 rgba(230, 160, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 20px 16px rgba(230, 160, 0, 0);
  }
}
.confTitleBox .confTitle h1 a .conference-title-link {
    display: flex;
    align-items: center;
    gap: 16px;
}
.warning-message-box.fixed-width.review-instructions  a {color:red;font-weight:bold;text-decoration:underline;text-transform:uppercase;}

/* ELLS Event Cards */

  .ells-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 720px;
    width: 100%;
  }

   .ells-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .ells-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .ells-card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .ells-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .ells-card:hover .ells-card-img {
    transform: scale(1.05);
  }

  .ells-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    /* background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      transparent 100%
    ); */
  }

  .ells-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  .ells-card-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .ells-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease;
  }

  .ells-badge-day {
    font-size: 1rem;
    font-weight: 800;
  }

  .ells-badge-month {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .ells-badge-year {
    font-size: 0.55rem;
    font-weight: 400;
    opacity: 0.75;
  }

  .ells-badge--gold {
    background: #144696;
    color: #FFFFFF;
  }

   .ells-card:hover .ells-badge--gold {
    animation: ells-pulse-gold 1.5s infinite;
  }

  @keyframes ells-pulse-gold {
    0%, 100% { box-shadow: 0 0 8px 0 rgba(239, 199, 31, 0.5); }
    50%      { box-shadow: 0 0 20px 14px rgba(239, 199, 31, 0); }
  }

  .ells-badge--blue {
    background: #2c8365;
    color: #FFFFFF;
  }

  .ells-card:hover .ells-badge--blue {
    animation: ells-pulse-blue 1.5s infinite;
  }

  @keyframes ells-pulse-blue {
    0%, 100% { box-shadow: 0 0 8px 0 rgba(132, 152, 195, 0.5); }
    50%      { box-shadow: 0 0 20px 14px rgba(132, 152, 195, 0); }
  }

 .ells-card-footer {
    text-align: center;
    padding: 5px;
  }

  .ells-card-label {
    font-size: 1.35rem;
    font-weight: 500;
    color: #1a1a1a;
  }

  @media (max-width: 480px) {
    .ells-grid { gap: 20px; }
    .ells-card-title { font-size: 1.15rem; }
    .ells-badge { width: 56px; height: 56px; }
    .ells-badge-day { font-size: 0.9rem; }
  }
/* END-ELLS Event Cards */

/* Accomodation */
.ells-accom {
    max-width: 720px;
    font-family: 'CocoSharp Regular',sans-serif !important;
    color: #2d2d2d;
    line-height: 1.6;
  }

  /* ── Alert banner ──────────────────────────────── */
  .ells-accom-alert {
    background: linear-gradient(135deg, #efc71f 0%, #f5d94a 100%);
    color: #1a1a1a;
    padding: 20px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 6px;
  }

  .ells-accom-alert-sub {
    text-align: center;
    font-size: 0.88rem;
    color: #c0392b;
    font-weight: 700;
    margin: 10px 0 32px;
  }

  /* ── Section headings ──────────────────────────── */
  .ells-accom-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 40px 0 24px;
    padding-bottom: 8px;
    border-bottom: 3px solid #efc71f;
    display: inline-block;
  }

  .ells-accom-heading--alt {
    border-bottom-color: #8498c3;
  }

  /* ── Hotel card ─────────────────────────────────── */
  .ells-accom-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .ells-accom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  }

  /* ── Card header (hotel name) ───────────────────── */
  .ells-accom-card-header {
    background: #f9f9f7;
    border-bottom: 1px solid #eee;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .ells-accom-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
  }

  a.ells-accom-card-name:hover {
    color: #d4a800;
  }

  /* ── Discount badge ────────────────────────────── */
  .ells-accom-badge {
    background: #efc71f;
    color: #000;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .ells-accom-badge--blue {
    background: #8498c3;
    color: #000;
  }

  /* ── Card body ──────────────────────────────────── */
  .ells-accom-card-body {
    padding: 18px 24px 20px;
    font-size: 1rem;
  }

  .ells-accom-card-body p {
    margin: 5px 0;
  }

  .ells-accom-detail {
    display: flex;
    gap: 8px;
    margin: 5px 0;
    align-items: baseline;
  }

  .ells-accom-detail-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
  }


  .ells-accom-detail a {
    color: #1a1a1a;
    text-decoration: none;
  }

  .ells-accom-detail a:hover {
    text-decoration: underline;
    color: #d4a800;
  }
  /* ── Booking section ────────────────────────────── */
  .ells-accom-booking {
    background: #f9f9f7;
    border-top: 1px solid #eee;
    border-radius: 0 0 14px 14px;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .ells-accom-booking-title {
    font-weight: 700;
    margin-bottom: 8px;
  }

  .ells-accom-booking ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
  }

  .ells-accom-booking li {
    padding: 3px 0;
  }

  .ells-accom-booking a {
    color: #1a1a1a;
    text-decoration: none;
    word-break: break-all;
  }

  .ells-accom-booking a:hover {
    text-decoration: underline;
    color: #d4a800;
  }

  .ells-accom-code {
    display: inline-block;
    background: #fff3cd;
    border: 1px dashed #d4a800;
    padding: 3px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    margin: 4px 0;
  }

  .ells-accom-discount {
    color: #2d8365;
    font-weight: 700;
  }

  .ells-accom-warning {
    display: inline-block;
    background: #fff0f0;
    color: #c0392b;
    font-size: 0.82rem;
    font-weight: 600;
    font-style: italic;
    padding: 4px 12px;
    border-radius: 6px;
    margin-top: 6px;
  }
 /* Map */ 
 .ells-accom-map-link {
  display: inline-block;
  background: rgba(0, 0, 0, 0.12);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ells-accom-map-link:hover {
  background: rgba(0, 0, 0, 0.22);
}
/* TOC */
/* ── Navigation menu ─────────────────────────────── */
html {
  scroll-behavior: smooth;
}

.ells-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #f9f9f7;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}

.ells-nav-link {
  display: inline-block;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ells-nav-link:hover {
  background: #efc71f;
  border-color: #efc71f;
}
.ells-back-top {
  display: block;
  text-align: right;
  margin: 8px 0 -8px;
  font-size: 0.82rem;
  margin-bottom:25px;
}

.ells-back-top a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ells-back-top a:hover {
  color: #efc71f;
}

/* MENU */
/* ── ELLS Left Menu ──────────────────────────────── */
.conf_leftMenu {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 0 0 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.conf_leftMenu #outer {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Main menu items ─────────────────────────────── */
.conf_leftMenu .menuConfTitle {
  margin: 0;
  padding: 0;
}

.conf_leftMenu .menuConfTitle > a {
  display: block;
  padding: 12px 24px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.conf_leftMenu .menuConfTitle > a:hover {
  background: #f9f9f7;
  border-left-color: #efc71f;
  color: #d4a800;
}

/* ── Sub-menu ────────────────────────────────────── */
.conf_leftMenu .inner {
  list-style: none;
  padding: 0 0 4px 0;
  margin: 0;
  background: #f9f9f7;
}

.conf_leftMenu .menuConfMiddleCell {
  margin: 0;
  padding: 0;
}

.conf_leftMenu .menuConfMiddleCell > a {
  display: block;
  padding: 8px 24px 8px 40px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.conf_leftMenu .menuConfMiddleCell > a:hover {
  background: #f0f0ec;
  border-left-color: #8498c3;
  color: #1a1a1a;
}

/* ── Active / selected state ─────────────────────── */
.conf_leftMenu .menuConfMiddleCell.selected > a,
.conf_leftMenu .menuConfMiddleCell.menuConfSelected > a {
  border-left-color: #efc71f;
  color: #1a1a1a;
  font-weight: 700;
  background: #fff3cd;
}

.menuConfSelected, .menuConfMiddleCellSelected {
    background: #009fe3;
    color: #282929;
}

.support_box > h3 {
  color: #009fe3;
  background: #8acfda;
}

/* ── Separator between sections ──────────────────── */
.conf_leftMenu .menuConfTitle + .menuConfTitle {
  border-top: 1px solid #eee;
}

/* ── Contact box ─────────────────────────────────── */
.conf_leftMenu .support_box {
  margin: 16px 0 0;
  padding: 16px 24px;
  background: #f9f9f7;
  border: none;
  border-top: 1px solid #eee;
  border-radius: 0 0 14px 14px;
}

.conf_leftMenu .support_box h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin: 0 0 8px;
}

.conf_leftMenu .support_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conf_leftMenu .support_box li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.conf_leftMenu .support_box a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  word-break: break-all;
  transition: color 0.2s ease;
}

.conf_leftMenu .support_box a:hover {
  color: #d4a800;
}
/* END MENU */

/* Action bouton vert */
/* ── Action Box (Call for Abstracts) ─────────────── */
.action-box.highlight {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-box.highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.action-box.highlight .section {
  border-radius: 14px;
}

.action-box.highlight .label {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ── Button ──────────────────────────────────────── */
.i-button.highlight {
  border-radius: 10px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

.i-button.highlight:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
/* End action */
/* Warning call to abstract */
/* ── Call for Abstracts announcement ─────────────── */
.cfa-announcement {
  background: linear-gradient(135deg, #efc71f 0%, #f5d94a 100%);
  color: #1a1a1a;
  padding: 32px 36px;
  border-radius: 14px;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cfa-announcement:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.cfa-announcement p {
  margin: 10px 0;
}

.cfa-announcement p:first-child {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.cfa-announcement a {
  display: inline-block;
  background: rgba(0, 0, 0, 0.12);
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.cfa-announcement a:hover {
  background: rgba(0, 0, 0, 0.25);
}
/* END Warning*/

/* Adaptation graphique des blocs aux couleurs du Logo */
.ells-accom-card::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    to right,
    #efc71f 0%, #efc71f 33%,
    #4a7c59 33%, #4a7c59 66%,
    #8498c3 66%, #8498c3 100%
  );
  border-radius: 0 0 14px 14px;
}
/* Fin adaptation*/
/* Homepage bloc général */
/* ── Info Grid (sidebar) ─────────────────────────── */
.infogrid {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.infogrid .infoline {
  padding: 16px 20px;
  transition: background 0.2s ease;
}

.infogrid .infoline:hover {
  background: #fafaf8;
}

.infogrid .infoline.date .text {
  font-size: 1rem;
  line-height: 1.7;
}

.infogrid .infoline.date .label {
  font-weight: 700;
  color: #1a1a1a;
}

.infogrid .infoline.date time {
  font-weight: 600;
}

.infogrid .infoline.date .timezone {
  font-size: 0.82rem;
  color: #999;
  margin-top: 4px;
}

.infogrid .infoline.location .place {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.infogrid .infoline.location .address {
  margin: 4px 0 8px;
}

.infogrid .infoline.location a {
  display: inline-block;
  background: rgba(239, 199, 31, 0.15);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.infogrid .infoline.location a:hover {
  background: #efc71f;
}

/* ── Bandeau tricolore ELLS ──────────────────────── */
.infogrid::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    to right,
    #efc71f 0%, #efc71f 33%,
    #4a7c59 33%, #4a7c59 66%,
    #8498c3 66%, #8498c3 100%
  );
}
 .confTitleBox, .confheader {
  background-color: white !important;}
/* End Homepage*/
.ells-accom-detail {
  display: block;
  margin: 5px 0;
  padding-left: 28px;
  text-indent: -28px;
}

.ells-accom-detail-icon {
  display: inline;
  width: auto;
  margin-right: 8px;
}
/* Registration list - Fix */
/* ── Registration Table ──────────────────────────── */
#regforms-list {
  border-collapse: collapse;
  max-width: 720px;
  width: 100%;
}

#regforms-list thead th {
  background: #f9f9f7;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  border-bottom: 3px solid #efc71f;
}

#regforms-list tbody tr {
  transition: background 0.2s ease;
}

#regforms-list tbody tr:hover {
  background: #fafaf8;
}

#regforms-list tbody td {
  padding: 18px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

#regforms-list tbody tr:last-child td {
  border-bottom: none;
}

#regforms-list tbody td a:not(.i-button) {
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
}

/* Ajustement */
.menuConfSelected, .menuConfMiddleCellSelected, .support_box > h3 {
  background: #009fe3 !important;
  color: #282929;
}
.action-box.highlight .section:not(.highlight):not(.warning):not(.danger):not(.disabled):not(.accept):not(.plain) .text .label {
  color: #2d8365;
}
.i-button.highlight:not(.label):not(.borderless):not(.text-color), .i-selection input[type="checkbox"]:checked + label:not(.label):not(.borderless):not(.text-color), .i-selection input[type="radio"]:checked + label:not(.label):not(.borderless):not(.text-color), .categorynav .category-list .item .button-wrapper .action-button:not(.label):not(.borderless):not(.text-color), .action-button:not(.label):not(.borderless):not(.text-color), .i-button.highlight:not(.label):not(.borderless):not(.text-color):focus, .i-selection input[type="checkbox"]:checked + label:not(.label):not(.borderless):not(.text-color):focus, .i-selection input[type="radio"]:checked + label:not(.label):not(.borderless):not(.text-color):focus, .categorynav .category-list .item .button-wrapper .action-button:not(.label):not(.borderless):not(.text-color):focus, .action-button:not(.label):not(.borderless):not(.text-color):focus, .ui.primary.buttons .button, .ui.primary.button, .ui.primary.buttons .button:focus, .ui.primary.button:focus, ui.toggle.buttons .active.button, .ui.buttons .button.toggle.active, .ui.button.toggle.active, ui.toggle.buttons .active.button:focus, .ui.buttons .button.toggle.active:focus, .ui.button.toggle.active:focus, #tz-selector-widget select option:checked, #tz-selector-widget button, #tz-selector-widget fieldset :checked + label, #tz-selector-widget [type="checkbox"]:checked, .ui.inverted.blue.segment, #editing-view > div > div:first-child > h2.ui.header {
  background: #2d8365 !important;}
.action-box.highlight .section:not(.highlight):not(.warning):not(.danger):not(.disabled):not(.accept):not(.plain) > .icon {
  color: #2d8365 !important;
}
.action-box.highlight {
  border-top: 1px solid #2d8365 !important;
  border-bottom: 1px solid #2d8365 !important;
  border-right: 1px solid #2d8365 !important;
  border-left: 1px solid #2d8365 !important;
  background: #fff;
}
.ells-accom-heading--alt {
  border-bottom-color: #2d8365;
}
/* Progress Bar */
ul.steps li.completed .horizontal-line {
  background-color: #6755ff !important;
}
ul.steps li.completed .text {
  color: #6755ff !important;
}
ul.steps li.completed .circle::before {
  background-color: #6755ff !important;
  border-color: #6755ff !important;
}
.confSubTitleBox {
  background: #f0c71f !important;
}
/* Mire de recherche */
#event-search-box {display:none !important;}

/* ═══════════════════════════════════════════════════
   Registration Summary Page (with !important)
   ═══════════════════════════════════════════════════ */

/* ── Action box (registration completed) ────────── */
.conference-page .action-box.accept {
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 24px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.conference-page .action-box.accept:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09) !important;
}

.conference-page .action-box.accept .label {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
}

.conference-page .action-box.accept .i-button {
  border-radius: 10px !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.conference-page .action-box.accept .i-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

/* ── Bandeau tricolore ELLS ──────────────────────── */
.conference-page .action-box.accept::after {
  content: "" !important;
  display: block !important;
  height: 4px !important;
  background: linear-gradient(
    to right,
    #4a7c59 0%, #4a7c59 33%,
    #8498c3 33%, #8498c3 66%,
    #efc71f 66%, #efc71f 100%
  ) !important;
}

/* ── Summary box ─────────────────────────────────── */
.conference-page #registration-summary {
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  background: #fff !important;
  margin-bottom: 24px !important;
}

.conference-page #registration-summary .i-box-header {
  background: #f9f9f7 !important;
  padding: 18px 24px !important;
  border-bottom: 2px solid #efc71f !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.conference-page #registration-summary .i-box-title {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
}

.conference-page #registration-summary .i-box-metadata {
  font-size: 0.85rem !important;
  color: #666 !important;
}

.conference-page #registration-summary .i-box-metadata .label {
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-left: 10px !important;
}

.conference-page #registration-summary .i-box-content {
  padding: 0 !important;
}

/* ── Registration table ──────────────────────────── */
.conference-page .registration-info {
  width: 100% !important;
  border-collapse: collapse !important;
}

.conference-page .registration-info .regform-done-title td {
  background: linear-gradient(135deg, #efc71f 0%, #f5d94a 100%) !important;
  color: #1a1a1a !important;
  padding: 12px 24px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.conference-page .registration-info tr:not(.regform-done-title) {
  transition: background 0.2s ease !important;
}

.conference-page .registration-info tr:not(.regform-done-title):hover {
  background: #fafaf8 !important;
}

.conference-page .registration-info .regform-done-caption {
  padding: 12px 24px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  font-size: 0.9rem !important;
  width: 45% !important;
  border-bottom: 1px solid #f0f0f0 !important;
  vertical-align: top !important;
}

.conference-page .registration-info .regform-done-data {
  padding: 12px 24px !important;
  font-size: 0.9rem !important;
  color: #444 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  vertical-align: top !important;
}

/* ── Bandeau tricolore en bas du summary ─────────── */
.conference-page #registration-summary::after {
  content: "" !important;
  display: block !important;
  height: 4px !important;
  background: linear-gradient(
    to right,
    #4a7c59 0%, #4a7c59 33%,
    #8498c3 33%, #8