.hs-container {
    max-width: 500px;
    margin: 20px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
}
.hs-header h2 { margin: 0; color: #10b981; }
.hs-header p { margin: 5px 0 20px; color: #64748b; font-size: 14px; }
.hs-actions { display: flex; flex-direction: column; gap: 10px; }
.hs-btn {
    padding: 15px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}
.hs-btn-primary { background: #10b981; color: #fff; }
.hs-btn-secondary { background: #f1f5f9; color: #0f172a; border: 1px solid #e2e8f0; }
.hs-btn-danger { background: #ef4444; color: #fff; }
.hs-btn-capture { background: #fff; border: 4px solid #10b981; color: #10b981; width: 70px; height: 70px; border-radius: 50%; }
#hs-video { width: 100%; border-radius: 15px; background: #000; margin-bottom: 15px; }
.hs-camera-controls { display: flex; justify-content: center; align-items: center; gap: 20px; }
.hs-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #10b981;
    border-radius: 50%;
    animation: hs-spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes hs-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hs-status-card { padding: 20px; border-radius: 15px; margin-top: 20px; }
.hs-status-Halal { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.hs-status-Haram { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.hs-status-Mashbooh { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.hs-ingredient-list { text-align: left; margin-top: 20px; }
.hs-ingredient-item { padding: 10px; border-bottom: 1px solid #f1f5f9; }
.hs-ing-name { font-weight: bold; display: block; }
.hs-ing-desc { font-size: 12px; color: #64748b; }
