
:root { --item-h: 44px; --radius: 16px; }
  body { margin:0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
  .open-btn { position: fixed; left: 16px; bottom: 16px; padding: 10px 14px; border:0; background:#000; color:#fff; border-radius:10px; }

  /* Overlay */
  .scrollbar-modal { 
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex !important
;
    background: rgba(1, 1, 1, 0.6);
    display: none;
    opacity: 0;
    align-items: flex-end;
    pointer-events: none;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1100;
}
  .scrollbar-modal.show { 
    pointer-events: auto;
    opacity: 1;
    }
    .scrollbar-modal .sheet{
        transform: translateY(100%);
        transition: all 0.2s ease;
    }
    .scrollbar-modal.show .sheet {
        transform: none;
    }



  /* Bottom sheet */
  .sheet { 
    width: 100%; 
    background: #1B1B1B;
    border-radius: var(--radius); margin: 0; padding-bottom: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.25); 
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 24px;
}
  .sheet__handle { display: none; width: 40px; height: 4px; background:#e5e5e5; border-radius: 2px; margin: 10px auto; }
  .sheet__header { display:flex; align-items:center; justify-content: space-between; padding: 16px 16px 0; }
  .sheet__title { 
    font-weight: 600;
    color: #F9F9F9;
     font-size: 20px; 

}
  .sheet__close { border:0; background:transparent; font-size: 22px; line-height: 1; cursor:pointer; 
    color: #757575
}
.sheet__close img {
    height: 24px;
}

  .pickers { display:flex; gap: 20px; align-items:center; justify-content: center; padding: 16px 16px 0; }
  .pickers {
    display: flex;
    gap: 8px;
  }
  .pickers input {
    width: calc(100%);
    height: 40px;
    background-color: #282828;
    border: none;
    outline: none;
    padding: 12px 10px;
    border-radius: 12px; 
    color: #9F9F9F;
  }
  .dash { 
    width: 8px; 
    height: 2px; 
    background:#757575; 
    opacity:.7; 
}

  .wheel { position: relative; width: 140px; height: calc(var(--item-h) * 3); overflow: auto; scroll-snap-type: y mandatory; scrollbar-width: none; -ms-overflow-style: none; border-radius: 12px; }
  .wheel::-webkit-scrollbar { display:none; }
  .wheel__spacer { height: calc(var(--item-h) * 2); }
  .wheel__item { height: var(--item-h); display:flex; align-items:center; justify-content:center; font-size: 18px; color:#F9F9F9; scroll-snap-align: center; }
  .wheel__item.inactive { color:#bfbfbf; }
  .wheel__mask { display: none; pointer-events:none; position:absolute; left:0; right:0; top: calc(50% - var(--item-h)/2); height: var(--item-h); border-radius: 10px; background: rgb(255, 255, 255, 0.2); box-shadow: 0 0 0 1px rgba(0,0,0,.06) inset; }

  .actions { padding: 12px 16px 0px; }
  .dropdown-menu-save,
  .save { 
    width:100%; border:0; 
    background: #E42320; 
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    font-size:14px; 
}

  .current-values { text-align:center; padding: 14px; color:#444; }

/*  */