/* v136 — sélection multiple iOS/macOS */
.bulk-select-indicator{
  display:none;
  width:24px;height:24px;border-radius:50%;
  border:1.5px solid #B8BEC7;background:#fff;
  align-items:center;justify-content:center;
  flex:0 0 24px;
  position:absolute;left:10px;top:50%;transform:translateY(-50%);
  z-index:5;box-sizing:border-box;
  transition:background .16s ease,border-color .16s ease,transform .16s ease;
}
.bulk-select-indicator svg{width:16px;height:16px;fill:none;stroke:#fff;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;opacity:0;transform:scale(.7);transition:opacity .14s ease,transform .14s ease;}
body.bulk-selection-mode .bulk-selectable-row .bulk-select-indicator{display:flex;}
body.bulk-selection-mode .bulk-selectable-row .swipe-content{
  padding-left:48px !important;
  cursor:default !important;
  user-select:none !important;-webkit-user-select:none !important;
  transition:background-color .16s ease,padding .18s ease !important;
}
body.bulk-selection-mode .bulk-selectable-row.bulk-selected .swipe-content{
  background:#F0F1F3 !important;
}
body.bulk-selection-mode .bulk-selectable-row.bulk-selected .bulk-select-indicator{
  background:#0A84FF;border-color:#0A84FF;transform:translateY(-50%) scale(1.03);
}
body.bulk-selection-mode .bulk-selectable-row.bulk-selected .bulk-select-indicator svg{opacity:1;transform:scale(1);}
body.bulk-selection-mode .bulk-selectable-row .swipe-actions,
body.bulk-selection-mode .bulk-selectable-row .desktop-action-menu{opacity:0 !important;pointer-events:none !important;}
body.bulk-selection-mode .bulk-selectable-row.open .swipe-content{transform:none !important;border-radius:0 !important;}
body.bulk-selection-mode .bulk-selectable-row .swipe-content::after{left:48px !important;}

.bulk-selection-toolbar{
  position:fixed;
  left:max(12px,env(safe-area-inset-left));right:max(12px,env(safe-area-inset-right));
  bottom:calc(76px + env(safe-area-inset-bottom));
  z-index:420;
  min-height:60px;
  padding:8px 10px;
  display:grid;grid-template-columns:auto minmax(0,1fr) 48px;align-items:center;gap:10px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(20,32,44,.10);
  border-radius:20px;
  box-shadow:0 14px 38px rgba(20,32,44,.15);
  -webkit-backdrop-filter:blur(22px) saturate(160%);backdrop-filter:blur(22px) saturate(160%);
  opacity:0;transform:translateY(18px) scale(.98);pointer-events:none;
  transition:opacity .18s ease,transform .22s cubic-bezier(.2,.8,.2,1);
}
.bulk-selection-toolbar.visible{opacity:1;transform:none;pointer-events:auto;}
.bulk-selection-cancel{border:0;background:transparent;color:#0F886E;font:inherit;font-size:13px;font-weight:720;padding:10px 8px;}
.bulk-selection-summary{min-width:0;display:flex;flex-direction:column;align-items:center;justify-content:center;line-height:1.15;}
.bulk-selection-summary strong{font-size:13px;color:var(--ink,#172231);white-space:nowrap;}
.bulk-selection-summary span{font-size:11px;color:var(--muted,#778099);margin-top:4px;font-variant-numeric:tabular-nums;}
.bulk-selection-delete{width:44px;height:44px;border:0;border-radius:14px;background:#FCECEA;color:#C33E35;display:flex;align-items:center;justify-content:center;}
.bulk-selection-delete:disabled{opacity:.35;}
.bulk-selection-delete svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;}

.bulk-delete-panel{max-width:560px !important;padding:18px 20px calc(20px + env(safe-area-inset-bottom)) !important;}
.bulk-delete-title{font-size:24px;font-weight:800;letter-spacing:-.55px;color:var(--ink,#172231);margin:12px 0 8px;}
.bulk-delete-copy{font-size:14px;line-height:1.45;color:var(--muted,#778099);margin-bottom:18px;}
.bulk-delete-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.bulk-delete-actions button{min-height:50px;border-radius:16px;border:1px solid var(--line,#E4E7EB);background:#fff;color:var(--ink,#172231);font:inherit;font-weight:750;}
.bulk-delete-actions button.danger{background:#C43E35;border-color:#C43E35;color:#fff;}

@media (min-width:850px){
  .bulk-selection-toolbar{left:50%;right:auto;width:min(520px,calc(100vw - 48px));transform:translate(-50%,18px) scale(.98);bottom:22px;}
  .bulk-selection-toolbar.visible{transform:translate(-50%,0);}
}
@media (prefers-reduced-motion:reduce){.bulk-select-indicator,.bulk-select-indicator svg,.bulk-selection-toolbar,body.bulk-selection-mode .bulk-selectable-row .swipe-content{transition:none !important;}}
