
    .calorie-chart {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 15px;
        margin-top: 20px;
    }
    
    .calorie-chart th {
        background-color: #6f42c1; /* Purple for cats */
        color: white;
    }
    
    .progress-bar {
        background-color: #6f42c1;
    }
    
    .result-card {
        border-left: 5px solid #6f42c1;
    }
    
    .activity-level {
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .activity-level:hover {
        transform: scale(1.03);
    }
    
    .activity-level.active {
        border: 2px solid #6f42c1;
        background-color: rgba(111, 66, 193, 0.1);
    }
    
    .feeding-option {
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid #dee2e6;
    }
    
    .life-stage-badge {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
