/* CC-02b Wave 2 - extracted from FRONTEND/07_vendors/vendor-catering-tasting.html */
html.rbac-pending body { visibility: hidden; }
        html.rbac-pending::before {
            content: "Verifying access...";
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', system-ui, sans-serif;
            font-size: 1rem;
            color: #475569;
            background: #f8fafc;
            visibility: visible;
            z-index: 2147483647;
        }
    


        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        .animate-scale-in { animation: scaleIn 0.4s ease-out both; }
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .logo-gradient { background: linear-gradient(135deg, #ff6b9d, #ffd700); }
        .gradient-bg { background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%); }
        .card-hover { transition: all 0.3s ease; }
        .card-hover:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1),
                        0 0.25rem 0.375rem -0.125rem rgba(0, 0, 0, 0.05);
        }
        .dark .card-hover:hover {
            box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.4),
                        0 0.25rem 0.375rem -0.125rem rgba(0, 0, 0, 0.2);
        }
        .skeleton {
            background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
            background-size: 60rem 100%;
            animation: shimmer 1.5s infinite linear;
            border-radius: 0.5rem;
        }
        .dark .skeleton {
            background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
            background-size: 60rem 100%;
        }
        .notification-dot { animation: pulse 2s infinite; }
        /* Timeline styles */
        .timeline-step {
            position: relative;
            display: flex;
            align-items: flex-start;
            padding-bottom: 1.5rem;
        }
        .timeline-step:last-child { padding-bottom: 0; }
        .timeline-step::before {
            content: '';
            position: absolute;
            left: 0.9375rem;
            top: 2rem;
            bottom: 0;
            width: 0.125rem;
            background: #e5e7eb;
        }
        .dark .timeline-step::before { background: #374151; }
        .timeline-step:last-child::before { display: none; }
        .timeline-step.active::before { background: #8B5CF6; }
        .timeline-dot {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            z-index: 1;
        }
        .timeline-dot.completed { background: #8B5CF6; color: white; }
        .timeline-dot.current { background: #3B82F6; color: white; }
        .timeline-dot.pending { background: #e5e7eb; color: #9ca3af; }
        .dark .timeline-dot.pending { background: #374151; color: #6b7280; }
