/* WRAPPER */
.woocommerce-MyAccount-navigation {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    width: 100%;
    max-width: 340px;
    margin-bottom: 60px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LINKS */
.woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB; /* light grey line */
    position: relative;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1F2937; /* dark grey */
    font-weight: 500;
    transition: color 0.2s ease;
}

/* ACTIVE LINK */
.woocommerce-MyAccount-navigation .is-active > a {
    color: #2B5CE6; /* green from your screenshot */
    font-weight: 600;
}

/* RIGHT ARROW (only on hover or active) */
.woocommerce-MyAccount-navigation a::after {
    content: "→";
    opacity: 0;
    margin-left: 8px;
    color: #9CA3AF; /* soft grey */
    transition: opacity 0.2s ease;
    font-size: 14px;
}

.woocommerce-MyAccount-navigation li:hover a::after,
.woocommerce-MyAccount-navigation .is-active a::after {
    opacity: 1;
}

/* HOVER COLOR */
.woocommerce-MyAccount-navigation li:hover > a {
    color: #2B5CE6; /* green hover like screenshot */
}

.woocommerce-order-received  .entry-header,
.woocommerce-account .entry-header {
    padding:20px 0 60px;
    text-align: center;
}

.woocommerce-MyAccount-content h2 {
    font-size: 32px;
    margin-bottom: 20px !important;
}
.woocommerce-MyAccount-content section {
    padding: 0;
}

.woocommerce-order-received .woocommerce-order section{
    padding: 0 !important;
}
.woocommerce-order-received h2 {
    font-size: 32px;
    margin-bottom: 30px;
}
.woocommerce-order-received .woocommerce-thankyou-order-details {
    padding: 0 !important;
}
.woocommerce-order-received .woocommerce-customer-details .woocommerce-column {
    margin-top: 30px;
}

.woocommerce table.shop_table {
    border-radius: 20px;
}
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
    padding: 10px !important;
}


.woocommerce-product-gallery__image {
    pointer-events: none;
}