/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Segoe UI Emoji", "Apple Color Emoji";
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            background-color: #f5f5f5;
            color: #333;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
        }
		

        .input-section {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        select, button {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        select {
            flex: 1;
        }
        
        button {
            background-color: #3498db;
            color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #2980b9;
        }
        
        .selected-products {
            margin-bottom: 30px;
        }
        
        .product-chip {
            display: inline-block;
            background-color: #e0e0e0;
            padding: 5px 10px;
            border-radius: 20px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .remove-chip {
            margin-left: 8px;
            cursor: pointer;
            color: #666;
        }
        
        .results {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .hazard-warning {
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 0 4px 4px 0;
            border-left: 4px solid;
        }
        
        .single-hazard {
            background-color: #fff8e1;
            border-color: #ffc107;
        }
        
        .environmental-hazard {
            background-color: #e8f5e9;
            border-color: #4caf50;
        }
        
        .combination-warning {
            background-color: #ffebee;
            border-color: #ef5350;
        }
        
        .explosive-combination {
            background-color: #fce4ec;
            border-color: #d81b60;
            animation: pulse 1.5s infinite;
        }
        
        .safe-combination {
            background-color: #e8f5e9;
            border-color: #2e7d32;
        }
        
        .hazard-icon {
            display: inline-block;
            width: 24px;
            text-align: center;
            font-weight: bold;
            margin-right: 8px;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        
        .assessment-note {
            font-size: 1em;
            color: #666;
            border-top: 1px dashed #ccc;
            margin-top: 30px;
            padding-top: 15px;
        }
        
        .storage-tip {
            font-size: 1em;
            color: #555;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px dashed #ddd;
        }