/* Hide Manus branding with !important flags */
[class*="manus-branding"],
[id*="manus-branding"],
a[href*="manus.space"],
a[href*="manus.ai"],
a:contains("Made with Manus"),
a[href*="Made with Manus"],
a:has(img[alt*="Manus"]),
a:has(span:contains("Manus")),
a[title*="Manus"],
a[aria-label*="Manus"],
a[href*="manus"],
div[class*="manus"],
div[id*="manus"],
span[class*="manus"],
span[id*="manus"],
footer a,
.footer a,
a[style*="position: fixed"],
a[style*="bottom: 0"],
a[style*="right: 0"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}

/* Add a white overlay at the bottom right corner */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 40px;
    background-color: white;
    z-index: 999999 !important;
    pointer-events: none;
}

/* Add overlay to iframe container */
.dashboard-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 40px;
    background-color: white;
    z-index: 999999 !important;
    pointer-events: none;
}
