/* Default WooCommerce navigation styling adjustments */
.woocommerce-MyAccount-navigation {
    position: relative;

}

/* Hide default select UI unless mobile */
.woocommerce-MyAccount-navigation select {
    display: none;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {

    .woocommerce-MyAccount-navigation {
        margin-bottom: 12px;
    }

    /* Hide the UL list on mobile */
    .woocommerce-MyAccount-navigation ul {
        display: none;
    }

    /* Create a dropdown look */
    .woocommerce-MyAccount-navigation::before {
        content: "Jump to:";
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
        font-size: 14px;
        color: #444;
    }

    /* Style the mobile select */
    .woocommerce-MyAccount-navigation select {
        display: block;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background-color: #fff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;
    }
}