/* Hide recent actions panel since we have our own audit logging */
.recent-actions {
    display: none !important;
}

/* Also hide the recent actions section if it exists */
#recent-actions-module {
    display: none !important;
}

/* Hide any recent actions related elements */
[data-module="recent-actions"] {
    display: none !important;
}

/* Hide recent actions module completely */
.module.recent-actions {
    display: none !important;
}

/* Hide recent actions in the admin index */
.recent-actions-module {
    display: none !important;
}

/* Hide any elements with recent-actions in class name */
*[class*="recent-actions"] {
    display: none !important;
}

/* Hide recent actions in the admin dashboard */
.admin-index .recent-actions,
.admin-index #recent-actions-module,
.admin-index .module.recent-actions {
    display: none !important;
}

/* Hide recent actions in Jazzmin admin */
.jazzmin .recent-actions,
.jazzmin #recent-actions-module,
.jazzmin .module.recent-actions {
    display: none !important;
} 