/* My Account Icons for WooCommerce Books plugin */

/* Base styling for My Books menu item with icon */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--my-books a::before {
    font-family: dashicons;
    content: "\f330"; /* Book icon */
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-size: 1.3em;
    position: relative;
    top: 0.1em;
    -webkit-font-smoothing: antialiased;
}

/* RTL support for My Books icon */
html[dir="rtl"] .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--my-books a::before {
    margin-right: 0;
    margin-left: 0.5em;
}

/* Alternative selector for some themes */
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--my-books a::before {
    font-family: dashicons;
    content: "\f330"; /* Book icon */
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-size: 1.3em;
    position: relative;
    top: 0.1em;
    -webkit-font-smoothing: antialiased;
}

/* RTL support for alternative selector */
html[dir="rtl"] .woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--my-books a::before {
    margin-right: 0;
    margin-left: 0.5em;
}

/* Ensure proper vertical alignment */
.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
} 