.woocommerce {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 0;
}

body .page-content .woocommerce {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-MyAccount-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.woocommerce-MyAccount-navigation {
    background-color: #7245f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.woocommerce-MyAccount-navigation li {
    margin: 5px 0;
}

.woocommerce-MyAccount-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 10px;
    display: block;
}

.woocommerce-MyAccount-navigation a:hover {
    color: #ffd700;
}

.woocommerce-MyAccount-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.dashboard-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}

.woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.woocommerce-table th,
.woocommerce-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.woocommerce-table th {
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
}

.woocommerce-table .product-name {
    font-weight: bold;
    color: #333;
}

.woocommerce-table .product-total {
    color: #007cba;
}

.woocommerce-button {
    background-color: #7245f8;
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

.woocommerce-button:hover {
    background-color: #5d2fd6;
}

.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    text-align: center;
}

.woocommerce-orders-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.woocommerce-orders-table__row {
    transition: background-color 0.3s ease;
}

.woocommerce-orders-table__row:hover {
    background-color: #f0f0f0;
}

.woocommerce-orders-table__cell a {
    color: #7245f8;
    font-weight: bold;
    text-decoration: none;
}

.woocommerce-orders-table__cell a:hover {
    color: #5d2fd6;
}

.woocommerce-orders-table__cell-order-status {
    text-transform: capitalize;
    font-weight: bold;
    color: #4CAF50;
}

.woocommerce-orders-table__cell-order-status.pending {
    color: #FF9800;
}

.woocommerce-orders-table__cell-order-status.failed {
    color: #F44336;
}

.woocommerce-orders-table__cell-order-status.completed {
    color: #4CAF50;
}

.woocommerce-pagination {
    text-align: center;
    margin-top: 20px;
}

.woocommerce-pagination .woocommerce-button {
    background-color: #7245f8;
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

.woocommerce-pagination .woocommerce-button:hover {
    background-color: #5d2fd6;
}

.woocommerce-pagination .woocommerce-button--previous {
    margin-right: 15px;
}

.woocommerce-pagination .woocommerce-button--next {
    margin-left: 15px;
}

.woocommerce-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

.woocommerce-info a {
    color: #7245f8;
    font-weight: bold;
}

.woocommerce-info a:hover {
    color: #5d2fd6;
}

.support-button {
    background-color: #7245f8 !important;
    color: #fff !important;
    font-size: 12px;
    padding: 6px 12px !important;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.support-button:hover {
    background-color: #5d2fd6 !important;
    transform: translateY(-2px);
}

.support-button:active {
    transform: translateY(1px);
}

.woocommerce-OrderUpdates {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.woocommerce-OrderUpdate {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.woocommerce-OrderUpdate-meta {
    font-size: 12px;
    color: #777;
}

.woocommerce-OrderUpdate-description {
    font-size: 14px;
    color: #333;
}

.woocommerce-OrderUpdate-inner {
    display: flex;
    justify-content: space-between;
}

.order-number,
.order-date,
.order-status {
    font-weight: bold;
}

.order-status {
    color: #5cb85c;
}

#customer_login {
    gap: 20px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    gap: 2rem !important;
    padding: 2rem 0 !important;
    box-sizing: border-box !important;
}

#customer_login .u-column1,
#customer_login .u-column2 {
    flex: 1 !important;
    min-width: 280px !important;
    box-sizing: border-box !important;
}

.woocommerce-form {
    border: none !important;
    background-color: #fff !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    transition: box-shadow 0.3s ease !important;
}

.woocommerce-form:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

#customer_login > div.u-column1.col-1 > form > p.woocommerce-LostPassword.lost_password > a {
    color: #7246f5 !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

#customer_login > div.u-column1.col-1 > form > p.woocommerce-LostPassword.lost_password > a:hover {
    color: #292c33 !important;
}

.woc-button {
    background-color: #7246f5 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: background-color 0.3s ease !important;
}

.woc-button:hover {
    background-color: #292c33 !important;
}

#customer_login > div.u-column1.col-1 > form > p:nth-child(3) > button {
    background-color: #7245f8 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    width: 100% !important;
    font-size: 16px !important;
}

#customer_login > div.u-column1.col-1 > form > p:nth-child(3) > button:hover {
    background-color: #292c33 !important;
    color: white !important;
}

.woocommerce-Input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

@media (max-width: 991px) {
    #customer_login {
        flex-direction: column !important;
    }

    #customer_login .u-column1,
    #customer_login .u-column2 {
        width: 100% !important;
        flex: none !important;
    }
}

@media (max-width: 768px) {
    .woocommerce {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .woocommerce-MyAccount-content {
        padding: 15px;
    }

    .woocommerce-MyAccount-navigation {
        padding: 10px;
        margin-bottom: 15px;
    }

    .woocommerce-MyAccount-navigation ul {
        flex-direction: row;
        justify-content: space-between;
        gap: 5px;
    }

    .woocommerce-MyAccount-navigation li {
        margin: 0;
    }

    .woocommerce-MyAccount-navigation a {
        font-size: 12px;
        padding: 6px;
    }

    .dashboard-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    }

    .woocommerce-MyAccount-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .woocommerce-table th,
    .woocommerce-table td {
        padding: 8px;
        font-size: 12px;
    }

    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        padding: 8px;
        font-size: 12px;
    }

    #customer_login {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 10px;
        gap: 1rem;
    }

    #customer_login .u-column1,
    #customer_login .u-column2 {
        width: 100%;
        flex: none;
        min-width: auto;
        max-width: 100%;
    }

    .woocommerce-form {
        padding: 1rem;
        margin: 0;
    }

    .woocommerce-Input {
        font-size: 14px;
        padding: 10px;
        margin-bottom: 8px;
    }

    .woc-button {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }

    h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .woocommerce {
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .woocommerce-MyAccount-content {
        padding: 10px;
    }

    .woocommerce-MyAccount-navigation {
        padding: 8px;
        margin-bottom: 10px;
    }

    .woocommerce-MyAccount-navigation a {
        font-size: 11px;
        padding: 5px;
    }

    .dashboard-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .woocommerce-MyAccount-content h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .woocommerce-table th,
    .woocommerce-table td {
        padding: 6px;
        font-size: 11px;
    }

    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        padding: 6px;
        font-size: 11px;
    }

    #customer_login {
        padding: 0.75rem 10px;
        gap: 0.75rem;
    }

    .woocommerce-form {
        padding: 0.75rem;
    }

    .woocommerce-Input {
        padding: 8px;
        font-size: 13px;
        margin-bottom: 6px;
    }

    .woc-button {
        padding: 8px 12px;
        font-size: 13px;
    }

    h2 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
}

