/* =========================================================================
   Brand the User Registration "My Account" area to match the seller portal.
   Lives in the theme (NOT the WP Customizer), so it deploys with the code —
   no database migration needed. Scoped to .user-registration-MyAccount-*.
   Palette: red #ca2127, navy #003E83, dark #1f2733, body #646464.
   ========================================================================= */

/* ── Left navigation menu (all links red, like the seller-template nav) ── */
/* !important + extra specificity to beat the addon's own menu colour CSS. */
.user-registration-MyAccount-navigation ul li a,
.user-registration-MyAccount-navigation ul li.user-registration-MyAccount-navigation-link a {
    color: #ca2127 !important;
}
.user-registration-MyAccount-navigation ul li a:hover,
.user-registration-MyAccount-navigation ul li.user-registration-MyAccount-navigation-link a:hover {
    color: #a91a1f !important;
}
.user-registration-MyAccount-navigation ul li.is-active a,
.user-registration-MyAccount-navigation ul li.is-active a:hover {
    color: #ca2127 !important;
    font-weight: 700;
}

/* Active item accent → brand red (overrides the plugin's default blue) */
.user-registration-MyAccount-navigation ul li.is-active {
    border-left-color: #ca2127 !important;
}

/* Menu icons (the addon renders them as <i>, an svg, or a ::before glyph) */
.user-registration-MyAccount-navigation ul li a i,
.user-registration-MyAccount-navigation ul li a svg,
.user-registration-MyAccount-navigation ul li a::before { color: #ca2127 !important; }

/* ── Account content ── */
/* Headings navy. We intentionally DON'T force link/button colours here, because
   the embedded seller dashboard (chips, cards, buttons) styles itself via
   seller.css — forcing colours here breaks the active chips / buttons. */
.user-registration-MyAccount-content h1,
.user-registration-MyAccount-content h2,
.user-registration-MyAccount-content h3 { color: #003E83; }
