/* Impact Donations Admin Styles */

.wrap {
    margin: 20px 20px 20px 2px;
}

.wrap h1 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.wrap h1::before {
    content: '❤️';
    margin-right: 12px;
    font-size: 1.2em;
}

/* Dashboard Stats */
.donation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.15);
    border-color: #3498db;
}

.stat-card:hover::before {
    height: 6px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 12px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stat-card p {
    color: #7f8c8d;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Enhanced Table Styles */
.wp-list-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: none;
}

.wp-list-table thead th {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 12px;
    border: none;
    font-size: 0.9rem;
}

.wp-list-table tbody tr {
    transition: all 0.2s ease;
}

.wp-list-table tbody tr:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateX(3px);
}

.wp-list-table tbody td {
    padding: 16px 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.wp-list-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.status-badge {
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.status-pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.status-completed {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    box-shadow: 0 2px 8px rgba(39, 174,