/* Updated style.css with separate columns for Order ID and Phone */
body, #com-order-table, #com-filters, #com-pagination {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 200;
}

#com-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 5px;
}

#com-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    table-layout: 1px;
}

#com-order-table th, #com-order-table td {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
}

/* Column specific styles */
#com-order-table th:nth-child(1),
#com-order-table td:nth-child(1) {
    width: 40px; /* SL column */
}

#com-order-table th:nth-child(2),
#com-order-table td:nth-child(2) {
    min-width: 110px;           /* Order Date column */
    font-size: 12px;
    text-align: center;
}

#com-order-table th:nth-child(3),
#com-order-table td:nth-child(3) {
    width: 80px; /* Order ID column */
}

#com-order-table th:nth-child(4),
#com-order-table td:nth-child(4) {
    width: 90px; /* Phone column */
}

#com-order-table td:nth-child(5) {
    font-size: 16px;
    text-align: left;
    width: 150px; /* Customer Name */
}

#com-order-table td:nth-child(6) {
    font-size: 15px; /*Address*/
    text-align: left;
    width: 300px;
}

/* Other existing styles remain the same */
.com-status-dropdown {
    padding: 4px;
    border-radius: 3px;
    font-weight: 700;
    width: 100%
}

.com-status-pending { background-color: #17a2b8; color: white; }
.com-status-processing { background-color: #ffc107; color: black; }
.com-status-completed { background-color: #28a745; color: white; }
.com-status-on-hold { background-color: #6c757d; color: white; }
.com-status-cancelled { background-color: #dc3545; color: white; }
.com-status-failed { background-color: #dc3545; color: white; }



#com-pagination {
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
}

.com-page-btn {
    margin: 0 4px;
    padding: 6px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}