/**
 * My Account Dashboard Text Spacing Fix
 * Fixes the issue where words run together in dashboard welcome message
 */

/* Fix dashboard welcome message text spacing */
.woocommerce-MyAccount-content p:first-of-type {
    line-height: 1.8 !important;
    letter-spacing: 0.5px !important;
    word-spacing: 3px !important;
}

/* Ensure proper spacing for strong elements */
.woocommerce-MyAccount-content p:first-of-type strong {
    margin-right: 6px !important;
    margin-left: 2px !important;
    display: inline !important;
}

/* Add spacing to all inline elements */
.woocommerce-MyAccount-content p:first-of-type * {
    margin-right: 3px !important;
}

/* Fix link spacing */
.woocommerce-MyAccount-content p:first-of-type a {
    margin-left: 4px !important;
    margin-right: 4px !important;
    display: inline !important;
}

/* General text node spacing fix */
.woocommerce-MyAccount-content p:first-of-type {
    font-variant-ligatures: none !important;
    text-rendering: optimizeLegibility !important;
}