body:not(.logged-in).woocommerce-account .woocommerce {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body:not(.logged-in).woocommerce-account form.woocommerce-form.woocommerce-form-login.login {
    background: var(--primary-color);
    color: var(--text-color-1);
    margin: 0;
}

body:not(.logged-in).woocommerce-account form.woocommerce-form.woocommerce-form-login.login a {
    color: var(--text-color-1);
    font-size: 14px;
}

body:not(.logged-in).woocommerce-account form.woocommerce-form.woocommerce-form-login.login label {
    font-weight: 400;
}

body:not(.logged-in).woocommerce-account form.woocommerce-form.woocommerce-form-login.login .woocommerce-form-login__submit {
    color: var(--text-color-1);
    background: var(--secondary-color);
    width: 100%;
}

body:not(.logged-in).woocommerce-account .woocommerce h2 {
    margin-bottom: 1rem;
}

.woocommerce-account .woocommerce {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}

.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
    display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 100% !important;
    padding: 2rem;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    font-size: 16px;
    background: #0F172A;
    color: #fff;
}

.woocommerce-account .entry-header {
    display: none;
}

.custom-dashboard {
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.dashboard_content {
    width: 100%;
}

.dashboard_content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.dashboard_content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dashboard-header {
    margin-bottom: 50px;
}

.custom-profile {
    background: var(--primary-color);
    padding: 15px;
    border-radius: 5px 5px 0 0;
    width: 100%;
    text-align: center;
    color: var(--text-color-1);
    font-size: 15px;
    line-height: 1;
}

.custom-profile img {
    border-radius: 50%;
    width: 80px;
    height: 80px !important;
    text-align: center;
    margin: 10px auto;
}

.account-summary {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.summary-box {
    padding: 15px;
    background: var(--primary-color);
    border-radius: 8px;
    text-align: center;
    flex: 1;
    color: var(--text-color-1);
    position: relative;
    overflow: clip;
    transition: ease-in-out 0.3s;
}

.summary-box:before {
    content: "";
    height: 160px;
    width: 160px;
    position: absolute;
    background: var(--text-color-2);
    opacity: 0.5;
    left: -75px;
    z-index: 1;
    top: -87px;
    display: block;
    border-radius: 100px;
    pointer-events: none;
    transition: ease-in-out 0.5s;
}

.summary-box:hover:before {
    background: #05C1DC;
    transform: scale(7.5);
}

.summary-box h3 {
    color: var(--text-color-1);
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.summary-box a {
    color: var(--text-color-1);
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.summary-box a:hover {
    color: #0F172A;
}

.summary-box p {
    font-size: 2.5rem;
    margin: 10px 0 !important;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.recent-orders {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td {
    padding: 10px;
    border: 1px solid #ddd;
    color: white;
}

.woocommerce-MyAccount-content th {
    background: var(--primary-color);
    color: var(--text-color-1);
}

.woocommerce-MyAccount-content th a {
    color: var(--text-color-2);
}

th.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-number {
    color: var(--text-color-1);
    position: relative;
    z-index: 1;
    border: none;
}

th.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-number a {
    color: var(--text-color-1);
}

th.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-number:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2; /* Adjust opacity as needed */
    z-index: -1;
}

td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-date,
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-total {
    position: relative;
    z-index: 1;
}

td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-date::before,
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-total::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2; /* Adjust opacity as needed */
    z-index: -1;
}

td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions {
    text-align: center;
}

td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a {
    width: 100%;
    max-width: 200px;
    background: var(--primary-color);
    padding: 15px 50px;
    margin: 0;
    color: var(--text-color-1);
    transition: ease-in 0.3s;
}

.woocommerce-MyAccount-navigation {
    background: var(--primary-color);
    padding: 15px 15px 50px;
    border-radius: 0 0 5px 5px;
    width: 100%;
    max-width: 380px;
    box-shadow: 5px 1px 9px rgba(0, 0, 0, 0.07);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.woocommerce-MyAccount-navigation p {
    margin: 10px 0 !important;
}

.woocommerce-MyAccount-navigation ul li {
    display: flex;
    border: none;
}

.woocommerce-MyAccount-navigation ul li a {
    text-decoration: none;
    background: var(--text-color-2);
    padding: 10px 15px;
    border-radius: 8px;
    color: #000;
    text-align: center;
    flex: 1;
    transition: ease-in-out 0.3s;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--secondary-color);
    color: var(--text-color-1);
}

header.woocommerce-Address-title.title {
    background: var(--primary-color) !important;
    font-size: 1.5rem;
    color: var(--text-color-1);
}

header.woocommerce-Address-title.title h2 {
    color: var(--text-color-1);
    font-size: 1.5rem;
}

header.woocommerce-Address-title.title a {
    font-size: 16px;
    color: var(--text-color-1);
}

.woocommerce-js .woocommerce-MyAccount-content form .form-row input.input-text,
.woocommerce-js .woocommerce-MyAccount-content form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    background: #f7f7f7;
    color: #000;
    font-size: 16px;
    border: none;
    height: 50px;
    padding: 1rem;
}

button.woocommerce-Button.button {
    background: var(--primary-color);
    padding: 15px 50px;
    margin: 0;
    color: var(--text-color-1);
    transition: ease-in 0.3s;
}

.woocommerce-MyAccount-content .woocommerce-message::before,
.woocommerce-MyAccount-content .woocommerce-info::before {
    color: var(--text-color-1);
}

.woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-message {
    background: var(--primary-color);
    color: var(--text-color-1);
}

.woocommerce-MyAccount-content a.button.wc-forward {
    background: var(--text-color-1);
    padding: 15px 50px;
    margin: 0;
    color: var(--primary-color);
    transition: ease-in 0.3s;
}
