/* 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;
}

/* Standard cell styling */
.table-payments td {
  font-size: 12px;
}

/* Grey cell styling */
.table-payments td.cell-grey {

  background-color: #e9ecef;
}

/* Base payment cell styling */
.table-payments td.cell-payment {
  min-width: 70px;
  padding: 0;
  border-radius: 2px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #86ad86;
  vertical-align: middle;
}

/* Payment status variations */
.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;
}