ul.dashboard-links {
    gap: 10px !important;
}

ul.dashboard-links li {
    width: calc((100% - 20px) / 3) !important;
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    border: 1px solid #ddd;
}

ul.dashboard-links li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fce7ec, #fcecf0);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 0;
}

ul.dashboard-links li a {
    border: none !important;
}


ul.dashboard-links li:hover,
ul.dashboard-links li:hover::before,
ul.dashboard-links li a:hover,
ul.dashboard-links li.active::before {
    transform: translateX(0);
    color: #6a6a6a !important;
    background-color: transparent !important;
}

ul.dashboard-links li a {
    position: relative;
    z-index: 1;
}

.woocommerce-EditAccountForm input,
.woocommerce-EditAccountForm button {
    border-radius: 10px !important;
}