    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .tomorrow-title {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .tomorrow-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tomorrow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    cursor: pointer;
  }
  
  .tomorrow-item img { width: 36px; height: 36px; }
  .tomorrow-time { font-size: 0.75rem; }
  
  /* ====== HELPER / BUTTONS ====== */
  
  .helper {
    font-size: 0.85rem;
    color: var(--text-soft);
  }
  
  button { font-family: inherit; }
  
  button.secondary {
    border: none;
    border-radius: 999px;
    padding: 3px 7px;
    font-size: 0.8rem;
    cursor: pointer;
    background: #e0e0ff;
    color: #333;
  }
  
  button.secondary:active { transform: scale(0.98); }
  
  body.night button.secondary {
    background: #2a2840;
    color: #eee;
  }
  
  /* ====== REWARDS + STICKERS ====== */
  
  #pageRewards { overflow-y: auto; }
  #pageStickerbook { overflow-y: auto; }
  
  .rewards-wrapper {
    background: var(--card-bg);
    margin: 8px;
    padding: 10px 12px 12px;
    border-radius: var(--radius-big);
    box-shadow: var(--shadow-soft);
  }
  
  .rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .reward-shop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .reward {
    width: 120px;
    padding: 8px;
    border-radius: var(--radius-med);
    background: var(--accent-soft);
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden; /* bubble blijft netjes in kaart */
    transform: translateZ(0);
    transition: transform .12s ease, filter .12s ease;
  }
  
  .reward:active { transform: scale(0.98); }
  
  .reward .icon { font-size: 1.6rem; }
  
  .reward .icon img,
  .owned-reward .icon img,
  .reward-icon-img,
  .reward-icon-preview {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
  }
  
  /* reward icon in winkel/owned wat compacter */
  .reward .icon img.reward-icon-img,
  .owned-reward .icon img.reward-icon-img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  
  /* ====== REWARD LOCK / KIND-VRIENDELIJK ====== */
  
  /* Alles wat “grijs” moet worden */
  .reward-inner {
    transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
  }
  
  /* Locked/te duur: maak de beloning zelf grijs */
  .reward-locked .reward-inner,
  .reward-unaffordable .reward-inner {
    opacity: 0.25;
    filter: grayscale(1) blur(0.2px);
  }
  
  /* Overlay zodat locked extra duidelijk voelt */
  .reward-locked::after,
  .reward-unaffordable::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.06);
    border-radius: var(--radius-med);
    z-index: 2;
    pointer-events: none;
  }
  
  /* Ronde badge in het midden met sterren-nog-nodig (NIET grijs) */
  .reward-need-bubble {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, #fff 0, #ffe082 35%, #ffca28 100%);
    color: #4b2c00;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(0,0,0,0.18);
    border: 3px solid rgba(255,255,255,0.75);
    z-index: 10;
    pointer-events: none;
  }
  
  .reward-need-bubble .need {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 2px;
  }
  
  .reward-need-bubble .need .num { font-size: 1.15rem; }
  .reward-need-bubble .need .star { font-size: 1.05rem; }
  
  /* Als er nog maar weinig nodig is, laat bubbeltje “bliepen” */
  .reward-almost .reward-need-bubble {
    animation: rewardPulse 1.1s ease-in-out infinite;
  }
  
  @keyframes rewardPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.06); }
  }
  
  /* ====== FUN ANIMATIES – BELONINGEN ====== */
  
  /* WIEBEL (locked / boing) */
  @keyframes wiggle {
    0%   { transform: rotate(0deg); }
    15%  { transform: rotate(-5deg); }
    30%  { transform: rotate(5deg); }
    45%  { transform: rotate(-4deg); }
    60%  { transform: rotate(4deg); }
    75%  { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
  }
  
  .reward.wiggle { animation: wiggle 0.5s ease; }
  
  /* FEEST-BONUS bij kopen */
  @keyframes happyBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.1); }
    60%  { transform: scale(0.95); }
    100% { transform: scale(1); }
  }
  
  .reward.happy { animation: happyBounce 0.45s ease; }
  
  /* kleine helper-lijn (je mag die later uitzetten in JS) */
  .reward-status-line {
    margin-top: 4px;
    font-size: 0.8rem;
  }
  
  /* Owned rewards (lijstje) */
  .owned-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .owned-reward {
    padding: 6px 8px;
    border-radius: 999px;
    background: #ffe8a3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  body.night .owned-reward {
    background: rgba(255,202,40,0.25);
    color: var(--text);
  }
  
  /* ====== STICKERBOEK ====== */
  
  .stickerbook {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  
  /* “Pagina” */
  .sticker-page {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
    border-radius: var(--radius-big);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
  }
  
  body.night .sticker-page {
    background: rgba(255,255,255,0.06);
  }
  
  /* “Gaatjes” */
  .sticker-page::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.10);
    box-shadow:
      0 26px 0 rgba(0,0,0,0.10),
      0 52px 0 rgba(0,0,0,0.10),
      0 78px 0 rgba(0,0,0,0.10);
    opacity: 0.6;
  }
  
  body.night .sticker-page::before {
    background: rgba(255,255,255,0.18);
    box-shadow:
      0 26px 0 rgba(255,255,255,0.18),
      0 52px 0 rgba(255,255,255,0.18),
      0 78px 0 rgba(255,255,255,0.18);
  }
  
  .sticker-card {
    margin-left: 24px; /* ruimte voor gaatjes */
    height: 100%;
    border-radius: 16px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px;
  }
  
  .sticker-inner {
    text-align: center;
    display: grid;
    gap: 6px;
  }
  
  .sticker-icon {
    font-size: 2.2rem;
    line-height: 1;
  }
  
  .sticker-name {
    font-size: 0.95rem;
    font-weight: 700;
  }
  
  /* nog niet gekocht */
  .sticker-locked .sticker-card {
    filter: grayscale(1);
    opacity: 0.35;
  }
  
  /* aantal-badge */
  .sticker-count {
    position: absolute;
    right: 10px;
    top: 10px;
    background: radial-gradient(circle at 30% 30%, #fff 0, #ffe082 35%, #ffca28 100%);
    color: #4b2c00;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.18);
    border: 2px solid rgba(255,255,255,0.8);
  }
  
  /* (voor later) shine class */
  @keyframes stickerShine {
    0%   { filter: brightness(1) drop-shadow(0 0 0 rgba(255,255,255,0)); transform: scale(1); }
    40%  { filter: brightness(1.25) drop-shadow(0 0 10px rgba(255,255,255,0.7)); transform: scale(1.04); }
    100% { filter: brightness(1) drop-shadow(0 0 0 rgba(255,255,255,0)); transform: scale(1); }
  }
  .sticker-shine .sticker-card { animation: stickerShine 0.65s ease; }
  
  /* (voor later) pop class */
  @keyframes stickerPop {
    0%   { transform: scale(0.6); opacity: 0; }
    60%  { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  .sticker-pop .sticker-card { animation: stickerPop 0.35s ease; }
  
  /* ====== ADMIN OVERLAY ====== */
  
  #adminMenuBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
  }
  
  #adminMenuBackdrop.visible { display: flex; }
  
  #adminMenu {
    width: min(900px, 96vw);
    max-height: 90vh;
    background: var(--card-bg);
    border-radius: var(--radius-big);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    padding: 14px 16px;
    overflow-y: auto;
  }
  
  #adminMenu h2 {
    margin-top: 0;
    margin-bottom: 6px;
  }
  
  .admin-section {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(0,0,0,0.02);
  }
  
  body.night .admin-section { background: rgba(255,255,255,0.02); }
  
  .admin-section h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1rem;
  }
  
  /* Dag-editor */
  
  .admin-day-block {
    border-radius: 10px;
    padding: 6px 8px;
    background: rgba(0,0,0,0.03);
    margin-bottom: 6px;
  }
  
  body.night .admin-day-block { background: rgba(255,255,255,0.03); }
  
  .admin-event-row {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
  }
  
  .admin-event-row select,
  .admin-event-row input[type="time"],
  .admin-event-row input[type="text"] {
    font-size: 0.8rem;
    padding: 3px 4px;
  }
  
  /* Taak-editor */
  
  .admin-task-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
  }
  
  .admin-task-row input[type="text"],
  .admin-task-row select {
    font-size: 0.8rem;
    padding: 3px 4px;
  }
  
  /* Admin punten input rij */
  
  .admin-points-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-end;
    margin-top: 0.5rem;
  }
  
  .admin-points-input-wrap { min-width: 140px; }
  .admin-points-input-wrap input[type="number"] { width: 100%; }
  
  /* Icon & rewards lijsten (admin) */
  
  #adminRewards,
  #adminTasksMorning,
  #adminTasksEvening,
  #adminDays,
  #adminIcons,
  #adminTaskIcons {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  
  .admin-icon-row,
  .admin-task-row,
  .admin-event-row,
  .admin-reward-row {
    display: grid;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.6rem;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid rgba(226, 232, 240, 0.9);
  }
  
  .admin-icon-row {
    grid-template-columns: auto minmax(0, 1.2fr) minmax(0, 1.4fr) auto;
  }
  
  .admin-task-row {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto auto auto;
  }
  
  .admin-event-row {
    grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1.5fr) auto;
  }
  
  .admin-reward-row {
    grid-template-columns: auto auto minmax(0, 1.5fr) auto auto auto;
  }
  
  .admin-icon-row img,
  .reward-icon-preview img,
  .reward-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
  }
  
  /* ====== SCROLL TWEAK ====== */
  
  body:not(.admin-page) { overflow: hidden; }
  #pageWeek { overflow: hidden; }
  
  /* kleine schermen: klokken wat kleiner */
  @media (max-width: 900px) {
    .kid-clock { width: 130px; height: 130px; }
    .kid-clock-small { width: 95px; height: 95px; }
  }
  
  /* admin responsive */
  @media (max-width: 960px) {
    .admin-icon-row,
    .admin-task-row,
    .admin-event-row,
    .admin-reward-row {
      grid-template-columns: minmax(0, 1fr);
      align-items: flex-start;
    }
  }
/* =========================
   STICKERBOEK - ECHT BOEK
   ========================= */

   .stickerbook-book {
    position: relative;
    width: min(720px, 96vw);
    height: min(520px, 62vh);
    margin: 10px auto 0;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.90));
    border: 1px solid rgba(0,0,0,0.06);
  }
  
  body.night .stickerbook-book {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  /* midden "rug" */
  .stickerbook-book::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 14px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(0,0,0,0.10), rgba(255,255,255,0.18), rgba(0,0,0,0.10));
    opacity: 0.45;
