/*Account List*/
@media screen and (min-width:768px){
    /* 偶數行背景色（排除第一行） */
    .woocommerce-orders-table tr:nth-child(even) {
        background-color: var(--theme-palette-color-6);
    }
    /* 奇數行背景色（排除第一行） */
    .woocommerce-orders-table tr:nth-child(odd){
        background-color: var(--theme-palette-color-8);
    }
    /* 第一行背景色 */
    .woocommerce-orders-table thead tr:first-child th {
        background-color: var(--theme-palette-color-4) !important;
        color:#FFFFFF;
    }
    /* 表格內容通用樣式 */
    .woocommerce-orders-table td,
    .woocommerce-orders-table th {
        vertical-align: middle !important;
        text-align: center !important;
    }
    /* 動作欄寬度限制 */
    .woocommerce-orders-table__cell-order-actions,
    .woocommerce-orders-table__header-order-actions {
        width: 100px !important;
        text-align: center !important;
    }
}
.woocommerce-button {
    font-size: 14px;
    width: 60px !important;
    padding: 4px;
    margin: 2px !important;
    background-color: var(--theme-palette-color-2);
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
/* 顯示被隱藏的訂單號欄位 */
.woocommerce-orders-table__cell-order-number {
    display: block !important;
    background-color:var(--theme-palette-color-6);
    padding-left:12px !important;}
.woocommerce-orders-table__cell-order-number:before{
content:'訂單編號';
}
.woocommerce-orders-table__cell{
border-bottom:solid;
border-color: var(--theme-palette-color-6);
padding:8px 12px;
vertical-align: middle !important;
}
	.woocommerce-orders-table__cell-invoice-number{
min-height:42px !important;
}
}