.manus-overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 40px;
    background-color: white;
    z-index: 9999999;
    pointer-events: none;
}

/* Add another overlay for the dashboard iframe */
.dashboard-container {
    position: relative;
}

.dashboard-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 40px;
    background-color: white;
    z-index: 9999999;
    pointer-events: none;
}
