/* =====================================================
   Disney Crowd Calendar ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ Full Stylesheet
   Version: 4.1.6
   Five-level crowd coding + regular structure
   ===================================================== */
@charset "UTF-8";

/* 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: 60% 40%;
  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:"\1FA84"; 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: 60%;
}

span.nc-halloween-val {
    text-align: right;
    display: flex;
    gap: 5px;
}

.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;
  font-size:12px;
  line-height:1;
  border-radius: 12px;
  color: #3d1760;
  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;
}

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;
  cursor:pointer;
  user-select:none;
  font-size: 13px;
  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;font-size: 14px;font-weight: 600;}
.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 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    width: 48%;
    text-align: left;
}
}

/* --- 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;
}

/* === Book Hotel: match accordion visuals + compact inputs === */
.nc-contained .nc-right .nc-detail-book {
  /* same card look as closed/shows */
  background: #fff;
  border-radius: 12px;               /* match your plugin radius */
  margin: 0;
  overflow: hidden;
  border: 2px solid #3d1761;
}

/* Share header style with other accordions */
.nc-contained .nc-right .nc-detail-book .nc-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    font-weight: 800;
    color: #3D1760;
    cursor: pointer;
    user-select: none;
    background-color: #f8f8fb;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 16px;
    font-family: "Jost", Sans-serif;
}

/* Optional caret, same behavior as other sections */
/* U+203A › */
.nc-contained .nc-right .nc-detail-book .nc-section-title::after {
  transition:transform .2s ease;
  content: '';
  width: 8px;
  height: 8px;
  margin-left: .4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: .7;
}
.nc-contained .nc-right .nc-detail-book.is-expanded .nc-section-title::after { transform:rotate(45deg); }
.nc-contained .nc-right .nc-detail-book.is-expanded .nc-section-title::after {
  transform: rotate(45deg);
}

/* Section body (same spacing rhythm) */
.nc-contained .nc-right .nc-detail-book .nc-book-list {
  list-style: none;                   /* remove bullet */
  margin: 0;
  padding: 12px 14px 16px;
  background-color: #f8f8fb;
}

/* Grid layout for fields */
.nc-contained .nc-right .nc-detail-book .nc-book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 760px) {
  .nc-contained .nc-right .nc-detail-book .nc-book-grid { grid-template-columns: 1fr; }
}

/* Labels */
.nc-contained .nc-right .nc-detail-book .formfield label {
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: #3D1760;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    font-family: "Jost", Sans-serif;
    line-height: 16px;
}

/* Inputs & selects: compact + rounded (match plugin) */
.nc-contained .nc-right .nc-detail-book .formfield input[type="text"],
.nc-contained .nc-right .nc-detail-book .formfield select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d6d9e0;
  border-radius: 10px;                /* rounded corners as requested */
  background: #fafafa;
  font-size: 13px;
  line-height: 1.35;
  -webkit-appearance: none;
  appearance: none;
}

/* Readonly start-date should still look editable */
.nc-contained .nc-right .nc-detail-book .formfield input[readonly] {
  background: #fff;
  color: #333;
}

/* CTA full row */
.nc-contained .nc-right .nc-detail-book .formfield--cta {
  align-items: end;
  display: flex;
}

/* CTA button (align with your button scale) */
.nc-contained .nc-right .nc-detail-book .nc-book-cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: #FF0000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
}
.nc-contained .nc-right .nc-detail-book .nc-book-cta:hover {
  filter: brightness(0.96);
}

/* Remove o contador da seÃ§Ã£o Book Hotel */
.nc-detail-book .nc-section-count {
  display: none !important;
}

.nc-contained .nc-right .nc-detail-book .nc-book-cta:hover {
    color: white !important;
}

/* Keep accordion collapsed visuals consistent */
.nc-contained .nc-right .nc-detail-book.is-collapsed .nc-book-list { display: none; }

/* 2 colunas de 50% para os campos padrÃ£o */
.nc-contained .nc-right .nc-detail-book .nc-book-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr)); /* 50% / 50% */
  gap: 12px;
}

/* garante que os campos se ajustem sem estourar */
.nc-contained .nc-right .nc-detail-book .formfield{ min-width: 0; }

/* CTA e "Child birthdays" ocupam 100% (linha inteira) */
.nc-contained .nc-right .nc-detail-book .formfield--cta,
.nc-contained .nc-right .nc-detail-book .nc-book-child-ages{
  grid-column: 1 / -1;
}

/* BotÃ£o 100% de largura */
.nc-contained .nc-right .nc-detail-book .nc-book-cta{
  display: block;
  width: 100%;
  text-align: center;
}

/* Inputs dentro do bloco de aniversÃ¡rios: 100% cada, empilhados */
.nc-contained .nc-right .nc-detail-book .nc-book-ages{
  display: grid;
  grid-template-columns: 1fr; /* um por linha, 100% */
  gap: 8px;
}
.nc-contained .nc-right .nc-detail-book .nc-book-ages input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d6d9e0;
    border-radius: 10px;
    background: #fafafa;
    font-size: 13px;
    line-height: 1.35;
    -webkit-appearance: none;
    appearance: none;
}

/* Mobile: tudo em uma coluna */
@media (max-width: 640px){
  .nc-contained .nc-right .nc-detail-book .nc-book-grid{
    grid-template-columns: 1fr;
  }
}

/* --- grade do formulÃ¡rio (jÃ¡ existe, sÃ³ lembrando) --- */
.nc-contained .nc-right .nc-detail-book .nc-book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 colunas iguais */
  gap: 12px;
}

/* 1) Start date ocupa a linha inteira (100% como o CTA) */
.nc-contained .nc-right .nc-detail-book .nc-book-grid > .formfield:first-child {
  grid-column: 1 / -1; /* span nas 2 colunas */
}

/* 2) CTA e Child birthdays jÃ¡ devem ocupar 100% da linha inteira */
.nc-contained .nc-right .nc-detail-book .formfield--cta,
.nc-contained .nc-right .nc-detail-book .nc-book-child-ages {
  grid-column: 1 / -1;
}

/* 3) Largura dos controles: botÃ£o e inputs a 100% */
.nc-contained .nc-right .nc-detail-book .formfield--cta .button,
.nc-contained .nc-right .nc-detail-book .nc-book-start,
.nc-contained .nc-right .nc-detail-book .nc-book-ages input[type="date"] {
  width: 100%;
  font-size: 13px !important;
  box-sizing: border-box;
}

/* 4) AparÃªncia consistente dos campos (select, date, etc.) */
.nc-contained .nc-right .nc-detail-book select,
.nc-contained .nc-right .nc-detail-book input[type="date"],
.nc-contained .nc-right .nc-detail-book input[type="text"] {
  padding: 10px;
  height: 40px;
  border: 1px solid #d7dbe0;
  border-radius: 8px;
  font-size: 13px;
  font: inherit;
}

/* Reuse count badge style if you show one */
.nc-contained .nc-right .nc-detail-book .nc-section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 8px;
  border-radius: 999px;
  background: #e23b3b;                /* red bubble like others */
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* calendar-datepicker.css
   Scope everything to .nc-mini-dp to avoid global bleed.
   Tweak sizing/colors via the CSS vars below. */

.nc-mini-dp {
  /* Sizing & theme tokens */
  --nc-dp-width: 260px;
  --nc-dp-radius: 10px;
  --nc-dp-gap: 6px;
  --nc-dp-pad: 8px;
  --nc-dp-cell-h: 34px;
  --nc-dp-font: 13px/1.3 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --nc-dp-bg: #fff;
  --nc-dp-border: #d6d9e0;
  --nc-dp-text: #3D1760;
  --nc-dp-muted: #6a6a6a;
  --nc-dp-hover: #f1eef6;
  --nc-dp-focus: #e7def1;
  --nc-dp-selected-bg: #3D1760;
  --nc-dp-selected-text: #fff;
  --nc-dp-disabled: #bbb;

  position: absolute;
  z-index: 99999;
  width: var(--nc-dp-width);
  max-width: min(var(--nc-dp-width), 92vw);
  background: var(--nc-dp-bg);
  border: 1px solid var(--nc-dp-border);
  border-radius: var(--nc-dp-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  font: var(--nc-dp-font);
}

/* Prevent unexpected inherited styles */
.nc-mini-dp, .nc-mini-dp * { box-sizing: border-box; }

/* Inner wrapper for padding */
.nc-mini-dp__inner {
  padding: var(--nc-dp-pad);
}

/* Header */
.nc-mini-dp__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nc-dp-gap);
  margin-bottom: var(--nc-dp-gap);
}

/* Title */
.nc-mini-dp__title {
  font-weight: 700;
  color: var(--nc-dp-text);
  text-transform: capitalize; /* e.g., "november 2025" */
}

/* Nav buttons */
.nc-mini-dp__nav {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: var(--nc-dp-text);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
  line-height: 1;
  font-weight: 600;
}
.nc-mini-dp__nav:focus-visible {
  outline: 2px solid var(--nc-dp-focus);
  outline-offset: 1px;
}
.nc-mini-dp__nav:hover {
  filter: brightness(1.05);
}

/* Weekday labels */
.nc-mini-dp__wdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin: 4px 0;
  color: var(--nc-dp-muted);
  text-transform: lowercase;
}
.nc-mini-dp__wday {
  text-align: center;
  padding: 2px 0;
  user-select: none;
}

/* Days grid */
.nc-mini-dp__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

/* Empty offset cells */
.nc-mini-dp__cell.is-empty {
  height: var(--nc-dp-cell-h);
}

/* Day buttons (reset + sizing) */
.nc-mini-dp__day {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--nc-dp-cell-h);
  width: 100%;
  border: 1px solid var(--nc-dp-border);
  background: #fafafa;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--nc-dp-text);
  text-align: center;
  padding: 0;          /* prevent inherited paddings from themes */
  margin: 0;
}

/* Hover / focus */
.nc-mini-dp__day:hover { background: var(--nc-dp-hover); }
.nc-mini-dp__day:focus-visible {
  outline: 2px solid var(--nc-dp-focus);
  outline-offset: 1px;
}

/* Selected */
.nc-mini-dp__day.is-selected {
  background: var(--nc-dp-selected-bg);
  border-color: var(--nc-dp-selected-bg);
  color: var(--nc-dp-selected-text);
}

/* Disabled */
.nc-mini-dp__day.is-disabled,
.nc-mini-dp__day:disabled {
  opacity: .45;
  cursor: not-allowed;
  background: #f5f5f5;
}

.nc-mini-dp__selectors {
  display: flex; gap: 6px; align-items: center;
}
.nc-mini-dp__month, .nc-mini-dp__year {
  font: inherit; padding: 2px 6px;
}

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

/* =========================
   Tickets section (parity with Book Hotel / Closed)
   ========================= */

/* Card shell & spacing */
.nc-contained .nc-right .nc-detail-tickets{
  background:#fff;
  border-radius:12px;
  margin:0;
  overflow:hidden;
  border: 2px solid #3d1761;
}

/* Header (same look/behavior as your other section titles) */
.nc-contained .nc-right .nc-detail-tickets .nc-section-title{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:10px;
  font-weight:800; color:#3D1760; cursor:pointer; user-select:none;
  background-color:#f8f8fb; margin-bottom:0; font-size:13px; line-height:16px;
  font-family:"Jost", Sans-serif;
}

/* Chevron like other sections */
.nc-contained .nc-right .nc-detail-tickets .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; transition:transform .18s ease;
}
/* Open/closed states (supports both aria and helper classes) */
.nc-contained .nc-right .nc-detail-tickets .nc-section-title[aria-expanded="true"]::after,
.nc-contained .nc-right .nc-detail-tickets.is-expanded .nc-section-title::after{
  transform:rotate(45deg);
}
.nc-contained .nc-right .nc-detail-tickets .nc-section-title[aria-expanded="false"]::after,
.nc-contained .nc-right .nc-detail-tickets.is-collapsed .nc-section-title::after{
  transform:rotate(-45deg);
}

/* Count bubble (reuse your style) */
.nc-contained .nc-right .nc-detail-tickets .nc-section-count{
  margin-left:auto; padding:5px 6px; font-size:.75rem; border-radius:999px;
  background:#c93031; color:#fff; line-height:100%; font-weight:700;
}

/* Body list (same rhythm as hotel) */
.nc-contained .nc-right .nc-detail-tickets .nc-ticket-list{
  list-style:none; margin:0; padding:12px 14px 16px; background-color:#f8f8fb;
}

/* Collapse purely with CSS when closed */
.nc-contained .nc-right .nc-detail-tickets .nc-section-title[aria-expanded="false"] + .nc-ticket-list,
.nc-contained .nc-right .nc-detail-tickets.is-collapsed .nc-ticket-list{
  display:none !important;
}

/* Row + grid */
.nc-contained .nc-right .nc-detail-tickets .nc-ticket-row{ padding:0; }
.nc-contained .nc-right .nc-detail-tickets .nc-ticket-grid{
  display:grid; gap:12px;
  grid-template-columns:repeat(2, minmax(0,1fr)); /* 50/50 like hotel */
}

/* First field (Start date) spans full width, same as hotel */
.nc-contained .nc-right .nc-detail-tickets .nc-ticket-grid > .formfield:first-child{
  grid-column:1 / -1;
}

/* CTA spans full row as well */
.nc-contained .nc-right .nc-detail-tickets .formfield--cta{
  grid-column:1 / -1; display:flex; align-items:end;
}

/* Mobile: single column */
@media (max-width:640px){
  .nc-contained .nc-right .nc-detail-tickets .nc-ticket-grid{
    grid-template-columns:1fr;
  }
}

/* Formfield base + labels (match hotel) */
.nc-contained .nc-right .nc-detail-tickets .formfield{
  display:flex; flex-direction:column; gap:6px; min-width:0;
}
.nc-contained .nc-right .nc-detail-tickets .formfield > label{
  margin:0 0 6px; display:flex; align-items:center; gap:.5rem;
  font-weight:800; color:#3D1760; font-size:13px; line-height:16px;
  font-family:"Jost", Sans-serif; cursor:pointer; user-select:none;
}

/* Inputs & selects (same sizing/rounded as hotel) */
.nc-contained .nc-right .nc-detail-tickets .formfield input[type="text"],
.nc-contained .nc-right .nc-detail-tickets .formfield select{
  width:100%; height:40px; padding:10px 12px;
  border:1px solid #d6d9e0; border-radius:10px;
  background:#fafafa; font-size:13px; line-height:1.35;
  -webkit-appearance:none; appearance:none; color:#111827;
}

/* Readonly start-date still looks editable (like hotel) */
.nc-contained .nc-right .nc-detail-tickets .formfield input[readonly]{
  background:#fff; color:#333;
}

/* Placeholder color for date field */
.nc-contained .nc-right .nc-detail-tickets .formfield input::placeholder{
  color:#9aa3b2;
}

/* Focus ring parity */
.nc-contained .nc-right .nc-detail-tickets .formfield input:focus,
.nc-contained .nc-right .nc-detail-tickets .formfield select:focus{
  border-color:#5b7cff; box-shadow:0 0 0 3px rgba(91,124,255,.15); outline:0;
}

/* Native select chevron */
.nc-contained .nc-right .nc-detail-tickets .formfield select{
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 16px) 17px,
    calc(100% - 11px) 17px,
    100% 0;
  background-size:5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat:no-repeat;
  padding-right:40px;
}

/* Duration wrapper inherits layout; keep it hidden when inline style is set by JS */
.nc-contained .nc-right .nc-detail-tickets .nc-tiqets-duration-wrap[style*="display:none"]{
  display:none !important;
}

/* --- Tickets CTA parity with Hotel Book CTA --- */
.nc-contained .nc-right .nc-detail-tickets .formfield--cta .button,
.nc-contained .nc-right .nc-detail-tickets .formfield--cta a.button {
  background: #FF0000;         /* same red tone */
  color: #fff;                 /* same text color */
  font-weight: 700;
  font-size: 13px;             /* reduced to match hotel CTA */
  line-height: 13px;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  box-shadow: none;
  transition: none;            /* remove hover/transition */
}

.nc-contained .nc-right .nc-detail-tickets .formfield--cta .button:hover,
.nc-contained .nc-right .nc-detail-tickets .formfield--cta a.button:hover {
  background: #FF0000;         /* no hover change */
  color: #fff !important;                 /* stable color */
  filter: none;
}

/* Small screens: keep it inside viewport nicely */
@media (max-width: 420px) {
  .nc-mini-dp {
    --nc-dp-width: 288px;
  }
}