/* Hide the "activate premium version" message from Freemius */
.fs-notice-content:has(em:contains("is already installed")) {
    display: none !important;
}

/* Alternative selector based on the specific message text */
.fs-notice-content:has(.fs-notice-body:contains("already installed")) {
    display: none !important;
}
