@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.trend-up {
    color: #10B981;
}

.trend-down {
    color: #EF4444;
}

.trend-stable {
    color: #3B82F6;
}

.chart-container {
    height: 300px;
}

/* Animation for health cards */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
.health-card {
    position: relative;
    transition: all 0.3s ease;
}

.health-card:hover {
    animation: pulse 1.5s infinite;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.health-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.health-card:hover::after {
    opacity: 1;
}
