/* Centre the entire container & add a background colour */
.fct_customer_profile_wrap {
    margin: 0 auto;
}
.fluent-cart-customer-profile-app:not(.el-dialog):not(.el-popper):not(.el-popover) {
    background-color: var(--color-body--lighter);
    border-radius: var(--border-radius-30);
}
/* Style the sidebar menu */
.fct-customer-dashboard-navs-wrap:not(.is-compact) .fct-customer-dashboard-customer-info {
    padding: var(--space-30) var(--space-15) var(--space-15) var(--space-30);
}
.fct-customer-dashboard-navs-wrap.is-compact .fct-customer-dashboard-customer-info {
    padding: var(--space-30) var(--space-10) var(--space-10) var(--space-20);
}
.fct-customer-dashboard-navs-wrap #fct-customer-menu-container {
    height: calc(100% - 85px);
}
.fct-customer-dashboard-navs-wrap.is-compact #fct-customer-menu-container {
    height: calc(100% - 80px);
}
/* This is the side menu */
.fct-customer-dashboard-navs-wrap .fct-customer-navs .fct-customer-nav-item.active_customer_menu .fct-customer-nav-link {
    background-color: var(--color-primary-l-2);
}
.fct-customer-dashboard-navs-wrap .fct-customer-navs .fct-customer-nav-item:not(.active_customer_menu) .fct-customer-nav-link:hover {
    background-color: initial;
}
/* Round the logout button */
#fct-customer-logout-button a {
    border-radius: var(--border-radius-99);
}
/* Let's remove the user avatar since it can't be changed anyway */
.fct-customer-dashboard-navs-wrap:not(.is-compact) .fct-customer-dashboard-customer-info img {
    display: none !important;
}
/* And make the text a little bigger */
.fct-customer-dashboard-navs-wrap .fct-customer-dashboard-customer-info-content h3 {
    margin: 0 0 var(--space-10) !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    line-height: 2rem !important;
}

/* Set styles for larger screens */
@media only screen and (min-width: 768px) {
    .fct-customer-dashboard-app-container .fct-customer-dashboard-main-content {
        padding: var(--space-40);
    }
}

/* Now remove the shipping address in the dashboard */
.fct-customer-dashboard-user-profile .fct-form-container[aria-labelledby="address-section-title-shipping"] {
    display: none;
}