/* CC-02b Wave 2 - extracted from FRONTEND/01_auth/verification-queue.html */
.document-viewer {
            max-height: 25rem;
            border: 0.125rem dashed #d1d5db;
            border-radius: 0.75rem;
            background: #f9fafb;
        }
        .dark .document-viewer {
            border-color: #4b5563;
            background: #374151;
        }
        .verification-step {
            position: relative;
        }
        .verification-step::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 2rem;
            bottom: -1.0rem;
            width: 0.125rem;
            background: linear-gradient(to bottom, #ff69b4, #d4af37);
        }
        .verification-step:last-child::before {
            display: none;
        }
        .pulse-dot {
            animation: pulse 2s infinite;
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }
        .verification-status-pending {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
        }
        .verification-status-approved {
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }
        .verification-status-rejected {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        .verification-status-review {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }
