/*Change the default tab Icons present in Admin and Patron dashboard ---> added by Manisha*/
/* tab icon css start */
.woocommerce-MyAccount-navigation ul li a:before{
    margin-inline-end: 10px!important;
    width: auto!important;
}
.woocommerce-MyAccount-navigation-link--settings a::before {
    content: "\f013" !important; /* FontAwesome Gear (Cog) Icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}
.woocommerce-MyAccount-navigation-link--course-listing a::before {
    content: "\f02d" !important; /* Book Icon (for courses) */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.woocommerce-MyAccount-navigation-link--patrons a::before {
    content: "\f500" !important; /* Users Class Icon (for patrons/members) */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.woocommerce-MyAccount-navigation-link--purchases a::before {
    content: "\f07a" !important; /* Shopping Cart Icon (for purchases) */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}
.woocommerce-MyAccount-navigation-link--edit-account a:before{
    content: "\f007" !important; /* user */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:before{
    content: "\f2f5" !important; /* logout */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.woocommerce-MyAccount-navigation-link--my-courses a::before {
    content: "\f19d" !important; /* Graduation Cap Icon (for my courses) */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.woocommerce-MyAccount-navigation-link--my-certificates a::before {
    content: "\f559" !important; /* Certificate Icon (for achievements) */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* tab icon css end */
