@media only screen and (max-width: 600px) {
    .cp-orders-with-delivery-dates-table th,
    .cp-orders-with-delivery-dates-table td {
        display: block;
    }

    .cp-orders-with-delivery-dates-table th {
        font-size: 14px;
    }
}

.delivery-date-within-two-days {
    background-color: #FFA500;
}

/*======= Table Styling =======*/
.wp-list-table {
    font-size: 14px;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.wp-list-table th {
    background-color: #f1f1f1;
    border-radius: 3px;
    font-weight: bold;
    padding: 10px;
}

.wp-list-table td {
    padding: 10px;
}

.wp-list-table tr {
    border-bottom: 1px solid #ebebeb;
}

.wp-list-table tr:hover {
    background-color: #f3f3f3;
}

.wp-list-table .column-order_id {
    width: 10%;
}

.wp-list-table .column-customer_name {
    width: 25%;
}

.wp-list-table .column-order_date {
    width: 15%;
}

.wp-list-table .column-delivery_date {
    width: 15%;
}

.wp-list-table .column-two_days {
    width: 10%;
}

/*======= Table Row Styling =======*/
.wp-list-table tr.delivery-date-within-two-days {
    background-color: #FFA07A;
}

/*======= Table Cell Styling =======*/
.wp-list-table p {
    margin: 0;
}