/* CSS to hide Bootstrap debug panel */
#bootstrap-debug-panel,
.bootstrap-debug-panel,
div[id^="bootstrap-debug"],
div[class^="bootstrap-debug"],
div:has(> h3:contains("Bootstrap Debug")),
div:has(> div > h3:contains("Bootstrap Debug")) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    z-index: -9999 !important;
}

/* Hide any div that contains Bootstrap Debug text */
div:has(h3:contains("Bootstrap Debug")),
div:has(strong:contains("Bootstrap Debug")),
div:has(span:contains("Bootstrap Debug")) {
    display: none !important;
    visibility: hidden !important;
}

/* Hide the specific debug panel from the screenshot */
div.bootstrap-debug,
div[style*="position: fixed"][style*="bottom: 10px"][style*="right: 10px"],
div[style*="background-color: rgba(0, 0, 0, 0.8)"][style*="color: white"],
div[style*="z-index: 9999"][style*="font-family: monospace"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
