.datasets-page-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.dataset-settings-link{ font-size:12px; }

/* ---- dataset inspector: right-side drawer (same open/close idiom as
   .modal-backdrop, anchored to the right edge instead of centered) ---- */
.inspector-backdrop{
  position:fixed; inset:0; background:rgba(10,14,13,0.25); display:none; z-index:280;
}
.inspector-backdrop.open{ display:block; }
.inspector-drawer{
  position:fixed; top:0; right:0; bottom:0; width:440px; max-width:92vw; background:var(--bg);
  border-left:1px solid var(--line); box-shadow:-14px 0 40px var(--shadow); z-index:281;
  display:flex; flex-direction:column; transform:translateX(100%); transition:transform .25s ease;
}
.inspector-backdrop.open .inspector-drawer{ transform:translateX(0); }
.inspector-drawer-head{
  flex:0 0 auto; display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:16px 18px; border-bottom:1px solid var(--line);
}
.inspector-drawer-body{ flex:1 1 auto; min-height:0; overflow-y:auto; padding:16px 18px; }
.inspector-drawer-actions{ flex:0 0 auto; display:flex; gap:8px; flex-wrap:wrap; padding:14px 18px; border-top:1px solid var(--line); }

@media (max-width:700px){
  .inspector-drawer{ width:100vw; }
}
