/* Awqaf Donation Suite — Donor dashboard tab */

.awqaf-tax-wrap {
  padding: 16px 0;
}

.awqaf-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.awqaf-badge.complete {
  background: #f0fdf4;
  border: 1px solid #22c55e;
  color: #166534;
  border-radius: 8px;
  padding: 10px 14px;
}

.awqaf-badge.incomplete {
  background: #fffbeb;
  border: 1px solid #f59e0b;
  color: #92400e;
  border-radius: 8px;
  padding: 10px 14px;
}

/* 18A certificate download list in donor dashboard */
.awqaf-cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.awqaf-cert-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.awqaf-cert-list li:last-child {
  border-bottom: none;
}

.awqaf-cert-dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ef463b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.awqaf-cert-dl:hover {
  background: #d93b31;
  color: #fff;
}
