/**
 * PrimoCRM — WordPress Sidebar Category Styles
 *
 * Styles the WP admin sidebar submenu to display categorized
 * navigation with headers, separators, and indented child items.
 */

/* Reset submenu item margins */
#adminmenu .toplevel_page_primocrm ul.wp-submenu li {
    margin: 0;
}

/* Category headers: Contacts, Campaigns — just a separator line, no bold/highlight */
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-contacts"],
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-campaigns"] {
    margin-top: 3px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

/* Standalone items with separator: Automations, Settings, Reports */
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-automations"],
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-settings"],
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-reports"] {
    margin-top: 3px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

/* Child items: Lists, Tags, Templates, Sequences — indented */
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-lists"],
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-tags"],
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-templates"],
#adminmenu .toplevel_page_primocrm ul.wp-submenu a[href*="page=primocrm-sequences"] {
    padding-left: 22px !important;
    font-size: 12px;
}

/* Brand logo menu icon: WP renders the base64 PNG data-URI as an <img>. Size it
   to the standard 20px, centred in the ~34px menu row. The same rule is also
   printed inline in <head> (see PrimoCRM::admin_sidebar_css) so sizing applies at
   first paint even before this file loads — this copy is just the persistent
   fallback. */
#adminmenu #toplevel_page_primocrm .wp-menu-image img {
    width: 20px;
    height: auto;
    padding: 7px 0 0 0;
    box-sizing: content-box;
}
