.orders-table{
	border-radius:15px;
	overflow:hidden;
	box-shadow:0 10px 35px rgba(0,0,0,0.06);
}
table.dataTable{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.orders-table table{
	width:100%;
	border-collapse:collapse;
}

.orders-table thead{
	background:#f9fafb;
}

.orders-table th{
	text-align:left;
	padding:22px 24px;
	font-weight:600;
	color:#6b7280;
	text-transform:uppercase;
	letter-spacing:.5px;
}

.orders-table td{
	padding:20px;
	border-top:1px solid #edf0f4;
	vertical-align:middle;
	white-space:nowrap;
}

.orders-table .badge{
	display:inline-flex;
	align-items:center;
	gap:8px;
}

.orders-table .badge::before{
	content:'';
	width:8px;
	height:8px;
	border-radius:50%;
}

.orders-table .btn-success::before{
	background:#dcfce7;
}
.orders-table .badge-success::before{
	background:#dcfce7;
}
.orders-table .badge-secondary::before{
	background:#999999;
}
.orders-table .btn-warning::before{
	background:#fef3c7;
}

.orders-table .badge-danger::before, .orders-table .btn-danger::before{
	background:#ffe2e2;
}

.orders-table .btn-info::before, .orders-table .badge-info::before{
	background:#dbeafe;
}

.progress-wrap{
	margin-top:10px;
}

.progress-bar{
	width:100px;
	height:6px;
	background:#e5e7eb;
	border-radius:999px;
	overflow:hidden;
}

.progress-fill{
	height:100%;
	background:#2563eb;
}

.progress-label{
	font-size:12px;
	color:#6b7280;
	margin-top:1px;
}

@media(max-width:1100px){
	.orders-table{
		overflow-x:auto;
	}

	table{
		min-width:100%;
	}
}