/* Scoped datepicker for Can Camps availability (frontend) */
.ccdisp-pop{
  position:absolute; z-index:99999;
  background:#fff; border:1px solid rgba(0,0,0,.15);
  border-radius:14px; box-shadow:0 16px 40px rgba(0,0,0,.18);
  padding:12px; width: min(320px, 92vw);
  font-family:system-ui,-apple-system,Segoe UI,Inter,Roboto,Ubuntu,Arial,sans-serif;
}
.ccdisp-head{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:8px}
.ccdisp-title{font-weight:900; color:#2a1c12}
.ccdisp-nav{display:flex; gap:8px}
.ccdisp-nav button{
  appearance:none; border:1px solid rgba(0,0,0,.12); background:#fff;
  width:36px; height:34px; border-radius:10px; cursor:pointer; font-weight:900;
}
.ccdisp-week{display:grid; grid-template-columns:repeat(7,1fr); gap:6px; margin:8px 0 6px; color:#6e5a48; font-weight:800; font-size:12px}
.ccdisp-days{display:grid; grid-template-columns:repeat(7,1fr); gap:6px}
.ccdisp-day{
  border:1px solid rgba(0,0,0,.10); background:#f6f1ea;
  border-radius:10px; height:38px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; user-select:none; font-weight:900; color:#2a1c12;
}
.ccdisp-day.is-out{opacity:.35; cursor:default}
.ccdisp-day.is-disabled{opacity:.35; cursor:not-allowed; text-decoration:line-through}
.ccdisp-day.is-selected{background:#4b3621; border-color:#4b3621; color:#fff}
.ccdisp-legend{margin-top:10px; display:flex; gap:10px; align-items:center; color:#6e5a48; font-weight:700; font-size:12px}
.ccdisp-chip{width:14px; height:14px; border-radius:5px; background:#4b3621; display:inline-block}
.ccdisp-chip--off{background:#d7c7b5}
