.recent-orders {
  margin-top: 40px;
}

.table-wrapper {
  background: #fff;
  border-radius: 10px;
  overflow-x: auto;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 900px;
}

.order-table thead {
  background: #f9fafb;
  color: #374151;
}

.order-table th,
.order-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.order-table td select {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.order-table td i {
  margin-right: 10px;
  cursor: pointer;
  color: #6b7280;
}

.status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

.status.delivered {
  background-color: #d1fae5;
  color: #065f46;
}

/* Footer */
.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 13px;
  border-top: 1px solid #e5e7eb;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination button {
  padding: 6px 10px;
  border: none;
  background: #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.pagination button.active {
  background-color: #10b981;
  color: #fff;
}

.pagination span {
  color: #6b7280;
}



