.sanitizer-result-area {
            background-color: #f8f9fc;
            border-radius: 8px;
            border: 1px solid #e0e6ed;
            padding: 1.25rem;
            font-family: 'SF Mono', 'Cascadia Code', monospace;
            font-size: 0.9rem;
            word-break: break-all;
            white-space: pre-wrap;
            max-height: 240px;
            overflow-y: auto;
        }
        .diff-badge {
            font-size: 0.8rem;
            background: #eef2ff;
            padding: 0.25rem 0.65rem;
            border-radius: 40px;
            display: inline-block;
        }
        .risk-meter {
            height: 8px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            width: 100%;
            margin: 0.5rem 0;
        }
        .risk-fill {
            height: 100%;
            width: 0%;
            background: #28a745;
            transition: width 0.3s ease;
        }
        .xss-badge {
            background: #ffe8e6;
            color: #c7254e;
            border-radius: 20px;
            padding: 0.2rem 0.7rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .method-tag {
            background: #e9ecef;
            border-radius: 12px;
            padding: 0.2rem 0.6rem;
            font-size: 0.75rem;
            font-family: monospace;
        }
        .stats-row {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .stat-card {
            background: white;
            border-radius: 16px;
            padding: 0.5rem 1rem;
            box-shadow: 0 1px 2px rgba(0,0,0,0.03);
            border: 1px solid #edf2f7;
            flex: 1;
        }
        .badge-method {
            background: #1e293b;
            color: white;
        }
        .toast-notify {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1100;
            min-width: 200px;
            background: #2c3e50;
            color: white;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
        }
        .toast-notify.show {
            opacity: 1;
        }