/* Base table styling */
.table-payments {
  border-collapse: separate;
  border-spacing: 7px;
  margin-top: -15px;
  margin-left: -7px;
}

/* Header styling */
.table-payments th {
  padding-left: 0;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}

/* Grey cell styling */
.table-payments td.cell-grey {
  background-color: #e9ecef;
}

/* Payment status variations */

.table-payments td.cell-payment {
  padding: 0;
}


.table-payments td.cell-payment-ongoing {
  background-color: #ced4da;
}

.table-payments td.cell-payment-paid {
  color: var(--root-primary);
}

.table-payments td.cell-payment-cancelled {
  border: 2px solid var(--root-danger) !important;
  color: var(--root-danger);
}

.table-payments td.cell-payment-pay-now {
  background-color: #86ad86;
}

.table-payments td.cell-payment-pay-now a {
  color: #fff;
}