 .woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
     padding: 1rem .3rem !important;
 }
    /* Borderless Clean Design - Like Nutritional Values Table */
    .woocommerce-orders-table-container {
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .woocommerce-orders-table {
        width: 100%;
        border-collapse: collapse;
        margin: 0;
        border: none !important;
    }

    /* Remove all borders */
    .woocommerce-orders-table,
    .woocommerce-orders-table thead,
    .woocommerce-orders-table tbody,
    .woocommerce-orders-table tr,
    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        border: none !important;
    }

    .woocommerce-orders-table thead {
        background: #fafafa;
        border-bottom: 1px solid #e8e8e8;
    }

    .woocommerce-orders-table thead th {
        padding: 16px 20px;
        text-align: left;
        font-weight: 600;
        color: #333333;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .woocommerce-orders-table tbody tr {
        transition: background 0.2s ease;
    }

    .woocommerce-orders-table tbody tr:hover {
        background: #fafafa;
    }

    .woocommerce-orders-table tbody tr:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }

    .woocommerce-orders-table tbody td {
        padding: 18px 20px;
        color: #555555;
        font-size: 12px;
        vertical-align: middle;
    }

    /* Order Number */
    .woocommerce-orders-table__cell-order-number a {
        color: #2c3e50;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .woocommerce-orders-table__cell-order-number a:hover {
        color: #b87939;
    }

    /* Order Status - Minimal Style */
    .woocommerce-orders-table__cell-order-status {
        font-weight: 500;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    mark.order-status {
        background: transparent !important;
        padding: 0;
        font-weight: 600;
        border: none;
    }

    mark.status-completed {
        color: #28a745;
    }

    mark.status-processing {
        color: #6c757d;
    }

    mark.status-on-hold {
        color: #17a2b8;
    }

    mark.status-pending {
        color: #ffc107;
    }

    mark.status-cancelled,
    mark.status-refunded,
    mark.status-failed {
        color: #dc3545;
    }

    /* View Button - Brown/Orange Like Image */
    .woocommerce-button.button.view,
    .woocommerce-orders-table__cell-order-actions a {
        background: #b87939;
        color: #ffffff !important;
        padding: 10px 28px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
        transition: all 0.3s ease;
        display: inline-block;
        border: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
    }

    .woocommerce-button.button.view:hover,
    .woocommerce-orders-table__cell-order-actions a:hover {
        background: #a06a31;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(184, 121, 57, 0.3);
    }

    /* No Orders Message */
    .woocommerce-message {
        background: #f8f9fa;
        border-left: 4px solid #8fae1b !important;
        padding: 18px 28px;
        border-radius: 6px;
        color: #555555;
        font-size: 14px;
        line-height: 1.6;
        border-top-color: transparent !important;

    }

    .woocommerce-message a.button {
        background: #b87939;
        color: #ffffff;
        padding: 10px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        margin-left: 12px;
        display: inline-block;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .woocommerce-message a.button:hover {
        background: #a06a31;
        transform: translateY(-1px);
    }

    /* Pagination */
    .woocommerce-pagination {
        margin-top: 25px;
        text-align: center;
    }

    .woocommerce-pagination .woocommerce-button {
        background: #b87939;
        color: #ffffff !important;
        padding: 10px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        margin: 0 6px;
        display: inline-block;
        transition: all 0.3s ease;
        border: none;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .woocommerce-pagination .woocommerce-button:hover {
        background: #a06a31;
        transform: translateY(-1px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
     padding: .5rem .3rem !important;
 }
        .woocommerce-orders-table {
            font-size: 13px;
        }

        .woocommerce-orders-table thead th,
        .woocommerce-orders-table tbody td {
            padding: 14px 12px;
            font-size: 13px;
        }

        .woocommerce-button.button.view,
        .woocommerce-orders-table__cell-order-actions a {
            padding: 8px 18px;
            font-size: 12px;
        }

        /* Stack table on mobile */
        .woocommerce-orders-table thead {
            display: none;
        }

        .woocommerce-orders-table tbody tr {
            display: block;
            margin-bottom: 16px;
            border: 1px solid #e8e8e8 !important;
            border-radius: 8px;
            overflow: hidden;
            padding: 1rem .5rem !important;
        }

        .woocommerce-orders-table tbody td {
            display: block;
            text-align: right;
            padding: 14px 16px;
            border-bottom: 1px solid #f0f0f0 !important;
        }

        .woocommerce-orders-table tbody td:last-child {
            border-bottom: none !important;
        }

        .woocommerce-orders-table tbody td::before {
            content: attr(data-title);
            float: left;
            font-weight: 600;
            color: #333333;
        }
    }