.pending-wrapper {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}


.pending-header {
  background: #1976d2;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}


.filter-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.filter-left,
.filter-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn.submit {
  background: #03a9f4;
  color: #fff;
}

.btn.update {
  background: #4caf50;
  color: #fff;
}


.table-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.table-controls select,
.table-controls input {
  margin-left: 5px;
  padding: 4px;
}


.table-responsive {
  overflow-x: auto;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.orders-table th,
.orders-table td {
  border: 1px solid #e0e0e0;
  padding: 8px;
  vertical-align: top;
}

.orders-table th {
  background: #f5f5f5;
  font-weight: 600;
}

.action-icons {
  font-size: 18px;
  cursor: pointer;
}


.pagination {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.pagination button {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: #fff;
}

.pagination .active {
  background: #1976d2;
  color: #fff;
}
