/* Page background */
body.woocommerce-order-received {
/*     background: #f5f7fb; */
}

/* Main container */
.woocommerce-order {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
.woocommerce-order h2 {
    text-align: center;
    font-size: 28px;
    color: #222;
}

/* Success message */
.woocommerce-notice {
    text-align: center;
    background: #eafaf1;
    color: #000;
    padding: 12px;
    font-weight: 500;
}

/* Order overview (top info box) */
.woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: #f8f9fc;
    padding: 20px;
    margin-top: 20px;
}

.woocommerce-order-overview li {
    list-style: none;
    font-size: 14px;
}

/* Table styling */
.woocommerce-table {
    margin-top: 25px;
    overflow: hidden;
}

.woocommerce-table th {
    background: #f1f2f6;
    padding: 12px;
    text-align: left;
}

.woocommerce-table td {
    padding: 12px;
}

/* Total highlight */
.woocommerce-table tfoot tr:last-child {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* Billing section */
.woocommerce-customer-details {
    margin-top: 25px;
    background: #f8f9fc;
    padding: 20px;
}

/* Buttons */
.woocommerce-order a.button {
    display: inline-block;
    margin-top: 20px;
    background: #000;
    color: #fff !important;
    padding: 10px 20px;
    text-decoration: none;
}
/* Outer container (grey box) */
.woocommerce-MyAccount-content {
    background: #f3f3f3;
    padding: 30px;
    border-radius: 20px;
}

/* Table wrapper */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

/* Header */
.woocommerce-orders-table thead th {
    background: #fafafa;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
}

/* Table row */
.woocommerce-orders-table tbody tr {
    background: #fff;
}

/* Table cells */
.woocommerce-orders-table td {
    padding: 16px 18px;
    font-size: 14px;
    color: #222;
    border-bottom: 1px solid #eee;
}

/* Remove last border */
.woocommerce-orders-table tbody tr:last-child td {
    border-bottom: none;
}

/* Order number */
.woocommerce-orders-table__cell-order-number a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

/* Status text */
.woocommerce-orders-table__cell-order-status {
    color: #555;
    font-weight: 500;
}

/* Total */
.woocommerce-orders-table__cell-order-total {
    color: #111;
    font-weight: 500;
}

/* View button (like image) */
.woocommerce-button.view {
    background: #e6e6ea;
    color: #111;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    border: none;
}

/* Remove other buttons (optional like your image) */
.woocommerce-button.pay,
.woocommerce-button.cancel {
    display: none;
}

/* Hover effect */
.woocommerce-orders-table tbody tr:hover {
    background: #fafafa;
}
table.shop_table_responsive tr th, table.shop_table_responsive tr td{
	padding : 10px !important;
}