.uuid-display {
            font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
            font-size: 1.8rem;
            background: #f8f9fc;
            padding: 1.2rem;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            word-break: break-all;
            text-align: center;
            transition: 0.2s;
        }
        .uuid-display:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
        }
        .batch-table {
            max-height: 380px;
            overflow-y: auto;
            font-size: 0.9rem;
        }
        .batch-table .table td {
            font-family: monospace;
            vertical-align: middle;
        }
        .copy-icon-sm {
            cursor: pointer;
            color: #0d6efd;
            transition: 0.1s;
        }
        .copy-icon-sm:hover {
            transform: scale(1.1);
            color: #0a58ca;
        }
        .action-group {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .stat-badge {
            background: #eef2ff;
            border-radius: 40px;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        } 
        .refresh-animation {
            animation: pulse 0.3s ease;
        }
        .uuid-version-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            margin: 1.5rem 0;
        }
        .uuid-version-table table {
            margin: 0;
        }
        .uuid-version-table th {
            background: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            font-weight: 600;
        }
        .uuid-version-table td {
            vertical-align: middle;
        }
        .badge-info {
            background-color: #0dcaf0;
        }
        .transparency-note {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .industry-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
            margin: 1.5rem 0;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 12px;
        }
        .industry-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 100px;
        }
        .industry-logo i {
            font-size: 2rem;
            color: #0d6efd;
            margin-bottom: 0.5rem;
        }
        .industry-logo span {
            font-size: 0.85rem;
            color: #495057;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.01); background: #e6f0ff; }
            100% { transform: scale(1); opacity: 1; }
        }