/* APIS Lab v6.75 — desktop quick-action rail cleanup.
   Fixes the empty black hover pill created by platform.css when .desktop-action
   has no data-label attribute. Accessibility remains provided by aria-label. */

.desktop-action::before,
.desktop-action:before{
  content:none!important;
  display:none!important;
  opacity:0!important;
  transform:none!important;
}

/* Keep the rail visually stable on hover/focus: only the round control moves. */
.desktop-action-rail{
  isolation:isolate;
}
.desktop-action{
  overflow:visible;
}
.desktop-action:focus-visible{
  outline:2px solid currentColor;
  outline-offset:3px;
}

@media(max-width:1080px){
  .desktop-action-rail{display:none!important;}
}
