/**
 * @file
 * Minimal fix for Ed11y button bar jumping issue.
 */

/* Ensure Ed11y button bar stays in place when clicked */
#ed11y-buttonbar,
.ed11y-buttonbar {
  position: fixed !important;
  z-index: 999999 !important;
}

/* Prevent jumping when panel opens */
ed11y-element-panel {
  position: fixed !important;
  z-index: 999998 !important;
}

/* Ensure smooth transitions */
#ed11y-buttonbar,
.ed11y-buttonbar,
ed11y-element-panel {
  transition: none !important;
  transform: none !important;
}