:root{--primary-color: #2e7d32;--secondary-color: #4caf50;--accent-color: #ffc107;--background-color: #f5f5f5;--text-color: #333;--card-background: #ffffff;--border-radius: 12px;--box-shadow: 0 4px 12px rgba(0, 0, 0, .1)}body{font-family:Roboto,sans-serif;background-color:var(--background-color);color:var(--text-color);margin:0;padding:1rem;display:flex;justify-content:center;align-items:center;min-height:100vh;box-sizing:border-box}main{width:100%;max-width:500px;text-align:center;display:flex;flex-direction:column;gap:1.5rem}header h1{color:var(--primary-color);font-weight:700;margin-bottom:.5rem}header p{color:#666;margin-top:0}.camera-container{width:100%;aspect-ratio:4 / 3;background-color:#000;border-radius:var(--border-radius);overflow:hidden;box-shadow:var(--box-shadow);display:none;position:relative}#camera-view{width:100%;height:100%;object-fit:cover}#capture-controls{display:flex;justify-content:center}button{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:12px 24px;font-size:1rem;font-weight:500;color:#fff;background-color:var(--secondary-color);border:none;border-radius:50px;cursor:pointer;transition:background-color .3s,transform .2s;box-shadow:0 2px 5px #0003}button:hover{background-color:var(--primary-color);transform:translateY(-2px)}button:active{transform:translateY(0)}#reset-btn{background-color:#757575}#reset-btn:hover{background-color:#616161}.result-section{background-color:var(--card-background);border-radius:var(--border-radius);padding:1.5rem;box-shadow:var(--box-shadow);display:flex;flex-direction:column;align-items:center;gap:1rem;width:100%;box-sizing:border-box}#captured-image{max-width:100%;border-radius:calc(var(--border-radius) / 2);border:1px solid #eee}.loader{border:5px solid #f3f3f3;border-top:5px solid var(--secondary-color);border-radius:50%;width:40px;height:40px;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.result-text{width:100%;text-align:left;line-height:1.6;padding:1rem;border-radius:8px}.result-text.vegan{background-color:#e8f5e9;border-left:5px solid var(--secondary-color)}.result-text.not-vegan,.result-text.unknown,.result-text.error{background-color:#ffebee;border-left:5px solid #f44336}.result-text h2{margin-top:0;font-size:1.5rem}.result-text ul{padding-left:20px;margin-bottom:0}
