/* Donations list styling */
.donor-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.donor-row:last-child {
    border-bottom: none;
}

.donor-avatar {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.donor-info {
    flex: 1;
}

.donor-name {
    font-weight: 700;
    color: #111827;
    font-size: 15px;
}

.donor-amount {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
    margin-top: 2px;
}

.donor-date {
    color: #6b7280;
    font-size: 13px;
    margin-top: 2px;
}

.top-donor-badge {
    display: inline-block;
    background: #4a5d23;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.donor-row.top-donor-row {
    background: #ebf5fb;
    border: 1px solid #d1e7f5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 8px;
}

/* Pagination */
.pg-btn {
    min-width: 36px;
    height: 36px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-btn:hover {
    background: #f3f4f6;
}

.pg-btn.active {
    font-weight: 700;
    background: #f3f4f6;
}

.pg-btn:disabled {
    opacity: 0.4;
    cursor: default;
}