Beneficiary Dashboard

Total Beneficiaries

12

Pending Documents

5

Total Allocated Funds

$50,000

Transaction History

Date Beneficiary Amount Status
2025-02-08 John Doe $1,000 Completed
2025-02-07 Jane Smith $500 Pending
/* styles.css */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; } .dashboard-container { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); width: 600px; text-align: center; } .dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; } .dashboard-cards { display: flex; justify-content: space-around; margin-bottom: 20px; } .card { background: #eef; padding: 15px; border-radius: 8px; display: flex; align-items: center; gap: 10px; width: 150px; } .dashboard-actions { display: flex; justify-content: space-between; margin-bottom: 20px; } .primary-btn, .secondary-btn, .notification-btn { background: #007bff; color: white; border: none; padding: 10px; border-radius: 5px; cursor: pointer; } .secondary-btn { background: #6c757d; } .transaction-history { margin-top: 20px; text-align: left; } .transaction-history h2 { margin-bottom: 10px; } table { width: 100%; border-collapse: collapse; } th, td { border: 1px solid #ddd; padding: 8px; text-align: left; } th { background-color: #007bff; color: white; }