/* Chart Card Styles */
.chart-card-wide {
    margin-top: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-total {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--eco-green);
}

.chart-container {
    height: 250px;
    position: relative;
}

/* Chart responsive */
@media (max-width: 768px) {
    .chart-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* E-Waste Impact Calculator Styles */
.impact-section {
    background-color: var(--bg-card-header);
    border-radius: 8px;
    border: 1px solid var(--eco-green);
}

.impact-title {
    color: var(--eco-green);
    font-size: 1.25rem;
    font-weight: 600;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.impact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--eco-green);
    opacity: 0.8;
}

.impact-content {
    flex: 1;
}

.impact-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
}

.impact-label {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
}

.impact-equivalent {
    font-size: 0.8rem;
    color: var(--eco-green);
    margin-top: 0.25rem;
}

.impact-disclaimer {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--eco-green);
}

/* Animation for values */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.impact-value {
    animation: countUp 0.6s ease-out;
}