
    .toxicity-chart {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 15px;
        margin-top: 20px;
    }
    
    .toxicity-chart th {
        background-color: #6f42c1; /* Purple for cats */
        color: white;
    }
    
    .result-card {
        border-left: 5px solid #6f42c1;
    }
    
    .toxicity-level {
        font-weight: bold;
    }
    
    .safe { color: #28a745; }
    .mild { color: #ffc107; }
    .moderate { color: #fd7e14; }
    .severe { color: #dc3545; }
    
    .product-card {
        transition: transform 0.3s;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
    }
    
    .symptom-item {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    
    .action-alert {
        border-radius: 8px;
    }
    
    .cat-icon {
        color: #6f42c1;
        margin-right: 8px;
    }
