/**
 * Fix for Layout Paragraphs controls visibility
 */

/* Ensure Layout Paragraphs controls are visible */
.lpb-controls {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 999 !important;
}

/* Ensure the paragraph wrapper allows controls */
.paragraph--type--egr-hv-tabs {
  position: relative;
}

/* Show controls on hover */
.paragraph--type--egr-hv-tabs:hover .lpb-controls {
  opacity: 1 !important;
}

/* Mercury Editor compatibility */
.mercury-editor .lpb-controls {
  display: block !important;
}

/* Ensure proper positioning */
.js-lpb-ui {
  position: relative;
  z-index: 1000;
}