/* Hide powered by listmonk footer - comprehensive approach */
.footer a[href*="listmonk.app"],
footer a[href*="listmonk.app"],
[href="https://listmonk.app"] {
    display: none !important;
}

/* Hide entire footer paragraphs (catches "Powered by" text) */
footer p:last-child,
.footer p:last-child,
footer p:only-child,
.footer p:only-child {
    display: none !important;
}

/* Hide any remaining footer content */
footer:has(a[href*="listmonk.app"]),
.footer:has(a[href*="listmonk.app"]) {
    display: none !important;
}

/* Fallback: hide small footer text generically */
footer small,
.footer small,
footer .small-text,
.footer .small-text {
    display: none !important;
}