/* Drill-down page additions: app links beside the section tabs */
.brand-link{text-decoration:none; color:inherit}
.applinks{display:flex; gap:2px; background:var(--sunken); border:1px solid var(--line); border-radius:7px; padding:2px}
.applinks a{padding:5px 12px; border-radius:5px; font-size:13px; font-weight:500; color:var(--muted); text-decoration:none; white-space:nowrap}
.applinks a:hover{color:var(--text); background:var(--surface)}
/* flying rows (bridge.js): a row that leaves fades out over the list, clipped to it */
.tablewrap{position:relative; overflow-y:hidden}
.flyghost{position:absolute; min-width:0; margin:0; table-layout:fixed; pointer-events:none; z-index:0}
/* phones: the drill-down's category tabs and filter rows wrap, the app links scroll sideways (no page overflow) */
@media (max-width:760px){
  .seg, .row{flex-wrap:wrap}
  .row > *{min-width:0}
  .applinks{overflow-x:auto; max-width:100%; scrollbar-width:none; flex-wrap:nowrap}
  .applinks::-webkit-scrollbar{display:none}
}
