/* =====================================================
   Disney Crowd Calendar Ã¢â‚¬â€œ Full Stylesheet
   Version: 4.1.6
   Five-level crowd coding + regular structure
   ===================================================== */

/* Theme tokens */
.nc-contained{
  --disney-calendar-style-version: "4.1.6";

  --xquiet:#cfe2f3; /* Ã¢â€šÂ¬50Ã¢â‚¬â€œ59.99  (Extreem Rustig) */
  --quiet:#d5e8d4;  /* Ã¢â€šÂ¬60Ã¢â‚¬â€œ69.99  (Rustig) */
  --normal:#542e71; /* Ã¢â€šÂ¬70Ã¢â‚¬â€œ84.99  (Normale Drukte) */
  --busy:#f5cba7;   /* Ã¢â€šÂ¬85Ã¢â‚¬â€œ99.99  (Druk) */
  --extreme:#e6b8af;/* Ã¢â€šÂ¬100+      (Extreme Drukte) */

  --ink:#222;
  --ink-weak:#6a6a6a;
  --bord:#e6e6e6;
  --bg:#fff;
  --soft:#f6f7f8;

  --radius:12px;
  --gap:8px;

  --maxw:1040px;
  --btn-size:34px;
  --shadow:0 1px 3px rgba(0,0,0,.06);

  /* Calendar sizing vars (used for grid + cells) */
  --g: 5px;          /* grid gap */
  --cell: 65px;      /* base desktop cell size */

  max-width:var(--maxw);
  margin:0 auto;
  padding:8px;
  display:grid;
  grid-template-columns: 70% 30%;
  gap:20px;
}

/* Layout breakpoints */
@media (max-width:980px){
  .nc-contained{ grid-template-columns:1fr; }
}

.nc-left{ display:flex; flex-direction:column; align-items:center; }
.nc-right {background:var(--bg);border:1px solid var(--bord);border-radius:var(--radius);box-shadow:var(--shadow);padding:14px;margin:0px}

/* -------------------------------------
   Park tabs
   ------------------------------------- */
.nc-header{margin-bottom:10px;width:100%}
.nc-tabs{list-style:none;margin:0;padding:0}
.nc-tabs--two{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.nc-tabs--two li{display:block}
.nc-tab{
  display:block;
  text-align:center;
  padding: 6px;
  border-radius:12px;
  border:1px solid #3D1760;
  color:#3D1760;
  background:#fff;
  line-height:100%;
  font-size: 14px;
  font-weight:600;
  text-decoration: none !important;
  font-family: "Jost", Sans-serif;
}
.nc-tab.is-active{background:#3D1760;color:white;border-color:#3D1760;}
.nc-tab.is-active:hover{background:#3D1760;color:white !important;border-color:#3D1760;}

/* -------------------------------------
   Month bar
   ------------------------------------- */
.nc-monthbar{
  box-sizing:border-box;                 /* prevent overflow from padding */
  display:grid;
  grid-template-columns:var(--btn-size) 1fr var(--btn-size);
  align-items:center;
  gap:8px;
  margin:8px 0 6px;
  width:100%;
  max-width:100%;                        /* keep inside nc-left */
}
.nc-monthbar .nc-month-title{
  font-weight:800;
  font-size:20px;
  margin:0;
  text-align:center;
  color:#3D1760;
  font-family: "Jost", Sans-serif;
  text-transform: capitalize;
}
.nc-month-prev, .nc-month-next{
  width: 40px;
  height: 40px;
  border: none !important;
  border-radius:50px !important;
  background:#3D1760;
  cursor:pointer;
  position:relative;
  padding: 6px !important;
}
.nc-monthbar .nc-month-prev::before,
.nc-monthbar .nc-month-next::before{
  content:'';display:block;width:8px;height:8px;border-top:2px solid #fff;border-left:2px solid #fff;
  position:absolute;top:50%;left:50%;
}
.nc-monthbar .nc-month-prev::before{transform:translate(-40%,-50%) rotate(-45deg)}
.nc-monthbar .nc-month-next::before{transform:translate(-60%,-50%) rotate(135deg)}

/* Monthbar meta line */
.nc-month-title .nc-month-meta{
  margin-top:6px;font-size:12px;color:var(--ink-weak);
  display:flex;gap:10px;justify-content:center;align-items:center;flex-wrap:wrap;
}
.nc-month-dot{
  display:inline-block;width:14px;height:14px;border-radius:3px;background:#ddd;vertical-align:-2px;
}

/* -------------------------------------
   Week header + grid
   ------------------------------------- */
.nc-weekdays{
  display:grid;
  grid-template-columns:repeat(7, var(--cell));
  gap:var(--g);
  margin:10px 0 8px;
  padding:0;
  list-style:none;
  justify-content:center;
  width:100%;
}
.nc-weekdays li{text-align:center;color:var(--ink-weak);font-weight:700;font-size:12px;text-transform:lowercase;letter-spacing:.02em}

.nc-grid{
  display:grid;
  grid-template-columns: repeat(7, var(--cell));
  grid-template-rows: repeat(5, var(--cell));
  gap: var(--g);
  justify-content:center;
  width:100%;
  overflow:hidden;
}
.nc-grid .nc-day:nth-child(n+36){ display:none; }

/* -------------------------------------
   Day cells
   ------------------------------------- */
.nc-day{
  width:var(--cell);
  height:var(--cell);
  min-width:var(--cell);
  min-height:var(--cell);
  border-radius:var(--radius);
  position:relative;
  background:#f0f1f3;
  color:#fff;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}
.nc-day, .nc-day.is-out{background:#f0f1f3 !important;color:#fff !important}

/* Date number */
.nc-day .nc-date, .nc-day.is-out .nc-date{
  position:absolute;
  top:8px;
  left:8px;
  font-weight:800;
  font-size:16px;
  color:#fff !important;
  line-height: 17px;
}

/* Meta (two lines) */
.nc-day .nc-chip{display:none !important}
.nc-day .nc-meta{
  position:absolute;left:8px;bottom:8px;font-size:12px;line-height:1.25;color:#fff !important;
}
.nc-day .nc-meta .row{opacity:1;margin-right:0 !important;margin-left:0 !important}

/* EMH wand */
.nc-day .nc-emh{
  position:absolute;top:8px;right:8px;width:16px;height:16px;line-height:16px;text-align:center;color:#fff;opacity:.95;
}
.nc-day .nc-emh .fa-wand-magic-sparkles{font-size:16px}

/* Hover & today ring */
.nc-day:not(.is-out){transition:box-shadow .15s ease, transform .15s ease}
.nc-day:not(.is-out):hover{box-shadow:0 6px 16px rgba(0,0,0,.12);transform:translateY(-1px)}
.nc-day.is-today::after{
  content:'';position:absolute;inset:0;border:2px solid rgba(255,255,255,.7);border-radius:var(--radius);pointer-events:none;
}

/* -------------------------------------
   Legend (under calendar)
   ------------------------------------- */
.nc-legend{margin-top:12px;width:100%}
.nc-legend-list{
  display:flex;gap:12px;flex-wrap:wrap;list-style:none;padding:0;margin:6px 0 0;width:100%;
}
.swatch{display:inline-block;width:14px;height:14px;border-radius:3px;margin-right:6px;vertical-align:-2px;background:#ddd}
/* Five swatches */
.sw-xquiet{background:var(--xquiet)}
.sw-quiet{background:var(--quiet)}
.sw-normal{background:var(--normal)}
.sw-busy{background:var(--busy)}
.sw-extreme{background:var(--extreme)}
/* EMH swatch */
.sw-magic{display:inline-block;width:30px;height:30px;margin-right:0;vertical-align:0;}
.sw-magic::before{content:"Ã°Å¸Âªâ€ž";font-size:18px;line-height:25px;display:inline-block}

/* -------------------------------------
   Detail pane (sidebar / popup)
   ------------------------------------- */
.nc-detail-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:10px;width: 100%;}
.nc-detail-prev,.nc-detail-next{
  width:40px;height:40px;border:1px solid var(--bord);border-radius:100px;background:#111;
  cursor:pointer;position:relative;padding:6px;
}
.nc-detail-prev::before,.nc-detail-next::before{
  content:'';display:block;width:8px;height:8px;border-top:2px solid #fff;border-left:2px solid #fff;
  position:absolute;top:50%;left:50%;
}
.nc-detail-prev::before{transform:translate(-40%,-50%) rotate(-45deg)}
.nc-detail-next::before{transform:translate(-60%,-50%) rotate(135deg)}
.nc-detail-title{
  font-weight:800;
  color:#3D1760;
  text-align:center;
  text-transform:capitalize;
  font-size:18px;
  line-height:1.15;
  font-family: "Jost", Sans-serif;
}
.nc-detail-body{display:grid;gap:8px}

/* Close button (mobile popup) pinned outside head */
.nc-detail-close{
  position:absolute;top:4px;right:8px;
  font-size:20px;line-height:1;background:transparent;border:0;cursor:pointer;padding:6px 8px;color:#3D1760;
}
.nc-detail-close:hover{
  background:#3D1760;color:#fff;border-radius:100px;height:28px;line-height:16px;font-size:20px;
}

/* Sidebar legend (single current item) */
.nc-detail-crowd{
  display:flex;align-items:center;gap:8px;margin:6px 0 6px;
}
.nc-detail-crowd .nc-legend-item{display:inline-flex;align-items:center;gap:8px}
.nc-detail-crowd .swatch{ width:20px; height:20px; border-radius:4px; }

/* -------------------------------------
   Sidebar typography + rows (titles larger than content)
   ------------------------------------- */
.nc-hours-title,
.nc-price-title, .nc-detail-endshow .nc-hours-title{
  display:block;
  font-weight:700;
  color:#3D1760;
  margin-top:0px;
  margin-bottom:2px;
  line-height:1.2;
  font-size: 13px;
  font-family: "Jost", Sans-serif;
  width: 50%;
}
.nc-hours-val,
.nc-price-val{font-size:14px;color: #371556;}

.nc-detail-price {
    border-radius: 12px;
    padding: 10px;
    background: #f8f8fb;
    margin: 0 0 0px;
}

/* Single-line rows with value aligned right */
.nc-detail-emh,
.nc-detail-hours,
.nc-detail-endshow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-radius: 12px;
  padding: 10px;
  background: #f8f8fb;
  margin: 0;
}
.nc-detail-endshow .nc-hours-title{ margin-top:0; }

/* --- Hours and endshow pill visuals --- */
span.nc-hours-val,
span.nc-endshow-val{
  display:inline-block;
  margin-left:0;
  padding:2px 6px;
  font-size:12px;
  line-height:1;
  border:1px solid #3d1760;
  border-radius: 12px;
  background:#3d1760;
  color:#fff;
  font-weight:600;
  opacity:1;
}

/* Prices block */
.nc-price-list{ display:flex; flex-wrap:wrap; gap:8px 12px; margin-top:6px; align-items:center; }
.nc-price-row{display:inline-flex;align-items:center;gap:6px;font-size:14px;width: 50%;color: #3d1760;line-height:16px;}
.nc-price-row i{ width:16px; text-align:center; opacity:1; }

.fa-child:before, .fa-male:before, .fa-person:before {
    content: "\f1ae";
    color: #3d1760;
}

/* CTA smaller, white text (and ensure end of block) */
.nc-price-cta{
  display:inline-block !important;
  margin-top:6px;
  padding:6px 10px;
  border-radius:10px;
  background: #FF0000;
  color:#fff !important;
  text-decoration:none !important;
  font-weight:700;
  font-size:0.9rem;
  line-height:100%;
  font-family: "Jost", Sans-serif;
  margin-top:15px;
}

a.nc-price-cta:hover {
    color: var(--e-global-color-c3155ec) !important;
    background: white;
}

/* Live lists in sidebar */
.nc-live { margin-top: 12px; display: grid; gap: 12px; }

/* Accordion-ready titles (works with JS collapse/expand) */
.nc-section-title{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-weight:800;
  color:#3D1760;
  margin:0px 0 4px;
  cursor:pointer;
  user-select:none;
  font-size:14px;
  font-family: "Jost", Sans-serif;
  line-height: 16px;
}
.nc-section-title .nc-section-count{
  margin-left:auto;
  padding: 5px 6px;
  font-size:.75rem;
  border-radius:999px;
  background: #c93031;
  color: white;
  line-height: 100%;
}
.nc-section-title::after{
  content:''; width:8px; height:8px; margin-left:.4rem;
  border-right:2px solid currentColor; border-bottom:2px solid currentColor;
  transform:rotate(-45deg); opacity:.7;
}
.is-expanded  .nc-section-title::after{ transform:rotate(45deg); }
.is-collapsed .nc-section-title::after{ transform:rotate(-45deg); }

/* Lists spacing + scrollable lists */
.nc-shows-list,
.nc-closed-list{
  list-style:none;
  margin:6px 0 0 0;
  padding:0 10px 0 0;
  display:grid;
  gap:8px;
  max-height:240px;
  overflow:hidden;
  overflow-y:scroll;
}

/* Rows */
.nc-closed-list .nc-live-row {
  display:flex; align-items:center; gap:10px;
  padding:8px 10px; border-radius:10px; background:#f8f8fb;
}

.nc-shows-list .nc-live-row {
  display:inline-grid; align-items:center; gap:10px;
  padding:8px 10px; border-radius:10px; background:#f8f8fb;
}
.nc-live-row .nc-live-bullet { width:8px; height:8px; border-radius:50%; background:#3D1760; }
.nc-live-row .nc-live-name {
  flex:1; font-weight:600;
  color:#1a1a1a; font-size:12px; line-height:14px;
}

/* Time badges (for grouped times) */
.nc-live-row .nc-live-times{
  display:flex; gap:6px; align-items:center; flex-wrap:wrap;
  font-weight:700; color:#3D1760;
}
.nc-live-row .nc-live-times .nc-time-badge{
  display:inline-block; padding:.15rem .45rem; border-radius:6px;
  border:1px solid currentColor; line-height:1; font-size:.82rem;
}
.nc-live-row .nc-live-time{ font-weight:700; color:#3D1760; } /* legacy single time */

/* Closed/Down styling: smaller, right-aligned chip */
.nc-live-row.is-down {background: #ffffff;}
.nc-live-row.is-down .nc-live-chip{
  margin-left:auto; order:2;
  background:#c93030; color:#fff; font-size:10px;
  padding:3px 6px; border-radius:999px; line-height:1; font-weight:600;
}

/* Live badge (show today only) */
.nc-section-title .nc-live-badge{
  display:inline-block;
  margin-left:.5rem;
  padding:.1rem .4rem;
  font-size:.72rem;
  line-height:1;
  border:1px solid currentColor;
  border-radius:6px;
  opacity:1;
}

/* Ensure collapsed sections hide lists even if JS inline styles get removed */
.nc-detail-shows.is-collapsed  .nc-shows-list  { display:none !important; }
.nc-detail-closed.is-collapsed .nc-closed-list { display:none !important; }

/* -------------------------------------
   Price-based tile colors (5 levels)
   ------------------------------------- */
.crowd-level-xquiet       { background: var(--xquiet)  !important; color:#fff !important; }
.crowd-level-quiet        { background: var(--quiet)   !important; color:#fff !important; }
.crowd-level-normal       { background: var(--normal)  !important; color:#fff !important; }
.crowd-level-busy         { background: var(--busy)    !important; color:#fff !important; }
.crowd-level-extreme-busy { background: var(--extreme) !important; color:#fff !important; }

/* Dot colors helper (if needed) */
.nc-dot-xquiet       { background: var(--xquiet)  !important; }
.nc-dot-quiet        { background: var(--quiet)   !important; }
.nc-dot-normal       { background: var(--normal)  !important; }
.nc-dot-busy         { background: var(--busy)    !important; }
.nc-dot-extreme-busy { background: var(--extreme) !important; }

/* --- Legend icon crowd classes (hooked by JS) --- */
img.legend-icon.crowd-xquiet  { background:var(--xquiet);  border-radius:4px; padding:4px; }
img.legend-icon.crowd-quiet   { background:var(--quiet);   border-radius:4px; padding:4px; }
img.legend-icon.crowd-normal  { background:var(--normal);  border-radius:4px; padding:4px; }
img.legend-icon.crowd-busy {
  padding:4px;
  width:40px !important;
  border-radius:4px;
  margin-right:6px;
  height:30px !important;
  background:var(--busy);
}
img.legend-icon.crowd-extreme {
  padding:0 !important;
  width:40px !important;
  border-radius:4px;
  margin-right:6px;
  height:30px !important;
  background:var(--extreme);
}

/* -------------------------------------
   Desktop detail arrows hidden
   ------------------------------------- */
@media (min-width:981px){
  .nc-detail-prev, .nc-detail-next{display:none !important}
}

/* -------------------------------------
   Responsive (tablet Ã¢â€ â€™ mobile)
   ------------------------------------- */

/* Tablet-ish: slightly smaller cells */
@media (max-width:900px){
  .nc-contained{ --cell: 58px; }
}

/* Mobile: let cells scale to viewport, remove excess paddings */
@media (max-width:799px){
  .nc-contained{ position:relative; }
  .nc-left{ padding:0; } /* requested: no padding on mobile */

  /* Backdrop */
  .nc-overlay{
    position:fixed;inset:0;background:rgba(0,0,0,.45);
    opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:9998;
  }
  .nc-overlay.is-open{ opacity:1;pointer-events:auto; }

  /* Sidebar becomes full-height modal */
  .nc-right{
    position:fixed;left:0;right:0;top:0;bottom:0;max-height:100vh;
    transform:translateY(110%);transition:transform .25s ease;z-index:9999;
    background:#fff;border-top-left-radius:16px;border-top-right-radius:16px;
    box-shadow:0 -8px 24px rgba(0,0,0,.18);overflow:auto;-webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;padding-bottom:env(safe-area-inset-bottom);
  }
  .nc-right.is-open{ transform:translateY(0%); }

  .nc-detail-head{
    position:sticky;
    top: 0;
    background:#fff;
    z-index:1;
    padding:12px 16px;
    border-bottom:1px solid rgba(0,0,0,.06);
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:10px;
    margin-top: 20px;
  }
  .nc-detail-title{font-weight:600;line-height:1.2}
}

/* Compact phones: compute cell size from viewport so 7 cols fit neatly */
@media (max-width:600px){
  /* 16px page padding (8px container + 8px gap-ish) + 6 gaps between 7 cols */
  .nc-contained{
    --g: 4px;
    --cell: calc((100vw - 32px - (10 * var(--g))) / 7);
  }

  .nc-weekdays{
    grid-template-columns:repeat(7, var(--cell));
    gap: var(--g);
  }
  .nc-grid{
    grid-template-columns:repeat(7, var(--cell));
    grid-template-rows:repeat(5, var(--cell));
    gap: var(--g);
  }

  .nc-day{
    width:var(--cell);
    height:var(--cell);
    min-width:var(--cell);
    min-height:var(--cell);
  }

  .nc-day .nc-date{font-size:11px;line-height:12px;}
  .nc-day .nc-meta{font-size:11px;line-height: 10px;}
}

/* -------------------------------------
   One-column layout when using the simplified opening-hours shortcode
   ------------------------------------- */
.nc-contained.nc--simple{ grid-template-columns:1fr; }

/* ==== Legend icons (calendar legend only; kept for back-compat) ==== */
.nc-legend-list .nc-legend-item{display:flex;align-items:center;gap:6px;font-size:12px;line-height:1.2;text-align:center}
.nc-legend-list .swatch{width:20px;height:20px;border-radius:50%;flex-shrink:0}

/* Dynamic EMH legend line */
.nc-legend .nc-legend-emh-line{
  width: fit-content;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
  font-size:12px;
  color:#444;
}
span.lbl{font-weight:500;color:#542e71;font-family: "Jost", Sans-serif;}
.nc-legend-emh-line span.lbl{font-size:12px}
span.val{font-weight:600}

/* Apply crowd colors to icons if needed (calendar legend only) */
.nc-legend-item:nth-child(1) .legend-icon { background-color: var(--xquiet);  padding:6px; width:30px; border-radius:4px; margin-right:6px; }
.nc-legend-item:nth-child(2) .legend-icon { background-color: var(--quiet);   padding:6px; width:30px; border-radius:4px; margin-right:6px; }
.nc-legend-item:nth-child(3) .legend-icon { background-color: var(--normal);  padding:6px; width:30px; border-radius:4px; margin-right:6px; }
.nc-legend-item:nth-child(4) .legend-icon { background-color: var(--busy);    padding:4px; width:40px; border-radius:4px; margin-right:6px; height:30px !important; }
.nc-legend-item:nth-child(5) .legend-icon { background-color: var(--extreme); padding: 4px; width:40px; border-radius:4px; margin-right:6px; height:30px !important; }

/* EMH legend badge */
.nc-legend-emh-line{
  margin-bottom:15px;background:#fffbff;border-radius:4px;padding:4px 12px;width:fit-content;
}

/* --- MOBILE SIDEBAR AS POPUP --- */
@media (max-width:799px){
  .nc-shows-list,
  .nc-closed-list{
    list-style:none;
    margin:6px 0 0 0;
    padding:0 10px 0 0;
    display:grid;
    gap:8px;
    max-height:400px;
    overflow:hidden;
    overflow-y:scroll;
  }
}

/* Data Control Ã¢â‚¬â€œ layout fixes so Remove stays inside the row */
.noomad-dc-wrap{
  max-width: 1180px;          /* was ~820px Ã¢â‚¬â€œ give the row more breathing room */
  background:#fff; border:1px solid #ccd0d4; border-radius:6px;
  box-shadow:0 1px 2px rgba(0,0,0,.05); margin:18px 0; overflow:hidden;
}
.noomad-dc-wrap h2{margin:0; padding:12px 14px; background:#f6f7f7; border-bottom:1px solid #e2e4e7; font-size:14px;}
.noomad-dc-wrap .inside{padding:14px;}
.noomad-dc-list{display:grid; gap:12px;}

/* Each row is a 4-column grid:
   1) Attraction name, 2) Park select, 3) Date range, 4) Actions (Remove) */
.noomad-dc-row{
  display:grid;
  grid-template-columns:
    minmax(220px, 1.8fr)
    minmax(220px, 1.2fr)
    minmax(260px, 1.4fr)
    120px;                   /* fixed room for the Remove button */
  gap:12px;
  align-items:end;
  padding:12px;
  border:1px solid #e6e6ea; border-radius:6px; background:#fff;
}

/* Inputs fill their cells and donÃ¢â‚¬â„¢t overflow */
.noomad-dc-row input[type="text"],
.noomad-dc-row .noomad-dc-date input,
.noomad-dc-row select{
  width:100%; max-width:100%; box-sizing:border-box;
}

/* Group the two date inputs neatly */
.noomad-dc-date{display:grid; grid-template-columns: 1fr 1fr; gap:8px; align-items:end;}

/* Actions (Remove) column Ã¢â‚¬â€œ keep the button inside and aligned right */
.noomad-dc-actions{
  display:flex; justify-content:flex-end; align-items:center;
}
.noomad-dc-actions .button,
.noomad-dc-actions .button-link-delete{
  white-space:nowrap;
}

/* Add row button aligned left below list */
.noomad-dc-add{margin-top:10px}

/* Responsive: on narrower admin screens stack gracefully */
@media (max-width: 1100px){
  .noomad-dc-row{
    grid-template-columns: 1fr 1fr;       /* stack into two columns */
    grid-auto-rows:auto;
  }
  .noomad-dc-date{grid-column:1 / -1;}    /* date range spans full row */
  .noomad-dc-actions{grid-column:1 / -1; justify-content:flex-start;}
}
@media (max-width: 640px){
  .noomad-dc-row{grid-template-columns: 1fr;} /* single column on very small screens */
}

.nc-month-prev, .nc-month-next {
    width: 30px;
    height: 30px;
    border: none !important;
    border-radius: 50px !important;
    background: #3D1760;
    cursor: pointer;
    position: relative;
    padding: 6px !important;
}

/* Admin repeater table: keep action buttons inside row */
.noomad-repeater table.widefat.fixed td,
.noomad-repeater table.widefat.fixed th {
  vertical-align: middle;
}

.noomad-repeater .col--actions {
  width: 90px;   /* enough space for Remove */
  text-align: center;
  white-space: nowrap;
}

.noomad-repeater .field--checkbox {
  width: 120px;  /* "No end date" column */
  text-align: center;
}

.nc-detail-parade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #f8f8fb;
    margin: 0;
    gap: 12px;
    border-radius: 12px;
}

/* Desktop: hide mobile close */
@media (min-width:800px){ .nc-detail-close{ display:none; } }

@media (max-width: 500px) {
  .nc-legend-list .nc-legend-item:nth-child(4) {
    width: 120px !important;
  }
}

/* --- Holidays: mirror Closed Attractions visuals, no accordion --- */

/* Title (inherits your existing section title styles) */
.nc-right .nc-detail-holidays .nc-section-title {
  display: block;             /* ensure it's not wired as a toggle */
  cursor: default;
}

/* List like closed attractions */
.nc-right .nc-detail-holidays .nc-holidays-list {
  list-style: none;
  margin: 0px 0 0 0;
  padding: 0;
}

.nc-detail-closed {
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #f8f8fb;
    margin: 0;
    gap: 12px;
    border-radius: 12px;
}

/* Row layout mirrors .nc-live-row */
.nc-right .nc-detail-holidays .nc-holiday-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}
.nc-right .nc-detail-holidays .nc-holiday-row:last-child {
  border-bottom: 0;
}

/* Chip style mirrors .nc-live-chip (use same colors you use for CLOSED) */
.nc-right .nc-detail-holidays .nc-holiday-chip,
.nc-right .nc-detail-holidays .nc-holiday-row > strong {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  border-radius: 12px;
  padding: 0;
  background: var(--nc-chip-bg, #fee2e2);   /* match your CLOSED chip bg */
  color: #c93030;        /* match your CLOSED chip fg */
  white-space: nowrap;
}

/* Holiday name mirrors .nc-live-name */
.nc-right .nc-detail-holidays .nc-holiday-name {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto';
  line-height: 16px;
  color: #c93030;
}

/* If your theme adds accordion affordances to section titles, neutralize here */
.nc-right .nc-detail-holidays .nc-section-title .nc-section-count,
.nc-right .nc-detail-holidays .nc-section-title .nc-live-badge {
  display: none !important;
}

.nc-detail-holidays {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 12px;
    padding: 10px;
    background: var(--nc-chip-bg, #fee2e2);
    margin: 0;
}