/* custom.css Content: Hides UI elements */

/* Hide Pro upgrade, settings modal button, and all footer elements */
.go-pro-link, 
#survey, 
#licenses, 
#releases, 
.footer-powered-by, 
.footer-link[href="#"],
li:has(a[data-bs-target="#settingsModal"]) {
    display: none !important;
}

/* Hide ALL elements that link to the /pipeline route, regardless of class or parent */
a[href="pipeline"],
a[href="/pipeline"] {
    display: none !important;
}

/* Optional: Hide the entire pipeline dropdown if it remains */
li.nav-item:has(a[href="/pipeline"]) {
    display: none !important;
}

.footer-link[href="#"],
.footer-link[href="##"] {
    display: none !important;
}

#github-button,
#discord-button {
    display: none !important;
}


