/* Impact Metrics text color updates */

/* Set text color to white for impact metric cards */
.metric-card p {
    color: #ffffff !important; /* Pure white color */
    opacity: 1 !important; /* Full opacity */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Add subtle shadow for readability */
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
}

/* Also ensure the heading is white and prominent */
.metric-card h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Make icons also white */
.metric-card i {
    color: #ffffff !important;
}