/*
 * VoxLift Toolbar — Base Stylesheet
 * Built by Vavinix · https://vavinix.com/
 * All primary styles are injected inline by voxlift.js
 * This file handles WordPress-level overrides and print suppression.
 */

/* Suppress toolbar on print */
@media print {
  #voxlift-root,
  .voxlift-skip-link {
    display: none !important;
  }
}

/* Ensure the root never disrupts page flow */
#voxlift-root {
  pointer-events: none;
}
#voxlift-root * {
  pointer-events: auto;
  box-sizing: border-box;
}

/* WordPress admin bar offset */
.admin-bar #voxlift-root {
  bottom: 56px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar #voxlift-root {
    bottom: 46px !important;
  }
}

/* Screen-reader-only utility */
.vl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
