/* Container: Remove the dark background */
.ppid-stats-container {
    background-color: transparent; /* No more dark blue */
    background-image: none;
    /*padding: 40px 0;  Less padding needed */
    margin-top: 30px;
    box-shadow: none; /* Remove any box shadow if present */
}

.ppid-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; /* Match the gap of your document grid */
}

/* Section Title*/
.section-title{
    color: var(--e-global-color-4a628ed); /* Navy Blue */
    font-family: 'Poppins';
}

/* The Stat Card: Copy the Document Card style */
.stat-item {
    background: #fff;
    border: 1px solid #e5e7eb; /* Same grey border as docs */
    border-radius: 12px;       /* Same rounded corners */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #C5A059; /* Minang Gold Hover */
}

/* Fix for the Icon Circle Alignment */
.stat-item .stat-icon {
    /* 1. Size & Shape */
    width: 70px;         /* Fixed width */
    height: 70px;        /* Fixed height to ensure a perfect circle */
    border-radius: 50%;
    
    /* 2. Colors */
    background: #F3F4F6; /* Grey Background */
    color: #374151;      /* Text Black */
    
    /* 3. The Centering Magic (This fixes the glitch) */
    display: flex;
    justify-content: center; /* Horizontally Center */
    align-items: center;     /* Vertically Center */
    
    /* 4. Spacing */
    margin-bottom: 20px;
    font-size: 32px;     /* Icon Size */
    line-height: 1;      /* Reset line-height to prevent offset */
    padding: 0;          /* Remove padding, let Width/Height handle size */
}

/* Number: Dark Blue to stand out on White */
.stat-number {
    font-size: 42px; /* Slightly bigger */
    font-weight: 800;
    color: #164B7E; /* Navy Blue */
    margin-bottom: 5px;
}

/* Label: Grey text */
.stat-label {
    font-size: 13px;
    /*color: #6b7280; Cool Grey */
    color: #374151;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}