/**
 * Client Portal Logo Size Fix
 * Makes logo 60% size only on client portal/my-account pages
 */

/* Target logo on WooCommerce My Account pages and Client Portal */
.woocommerce-account .site-banner-logo,
.page-template-client-portal .site-banner-logo,
body[class*="client-portal"] .site-banner-logo {
  width: 60%; /* 60% of the main 100% = 60% */
  max-width: 60%;
}

/* Ensure the logo wrapper adjusts accordingly */
.woocommerce-account .logo-inner-wrap,
.page-template-client-portal .logo-inner-wrap,
body[class*="client-portal"] .logo-inner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

