/* CC-02b Wave 2 - extracted from FRONTEND/01_auth/verification.html */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 1.25rem;
        }

        .container {
            max-width: 75rem;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            color: white;
            margin-bottom: 2.5rem;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.625rem;
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .main-content {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .verification-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
            gap: 1.25rem;
            padding: 1.875rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-bottom: 0.0625rem solid #e0e0e0;
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 0.625rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 0.3125rem;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
        }

        .status-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 1.25rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .status-badge.verified {
            background: #d4edda;
            color: #155724;
        }

        .status-badge.pending {
            background: #fff3cd;
            color: #856404;
        }

        .content-section {
            padding: 2.5rem;
        }

        .section-header {
            margin-bottom: 1.875rem;
        }

        .section-header h2 {
            font-size: 1.75rem;
            color: #333;
            margin-bottom: 0.625rem;
        }

        .section-header p {
            color: #666;
            font-size: 1rem;
        }

        .verification-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .verification-type-card {
            padding: 1.875rem;
            border: 0.125rem solid #e0e0e0;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            text-align: center;
        }

        .verification-type-card:hover {
            border-color: #667eea;
            box-shadow: 0 0.5rem 1.5rem rgba(102, 126, 234, 0.2);
            transform: translateY(-0.3125rem);
        }

        .verification-type-card .icon {
            font-size: 3rem;
            margin-bottom: 0.9375rem;
        }

        .verification-type-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.625rem;
            color: #333;
        }

        .verification-type-card p {
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 0.9375rem;
        }

        .upload-section {
            background: #f8f9fa;
            border-radius: 0.75rem;
            padding: 1.875rem;
        }

        .upload-header {
            margin-bottom: 1.5625rem;
            padding-bottom: 1.25rem;
            border-bottom: 0.125rem solid #e0e0e0;
        }

        .upload-header h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 0.3125rem;
        }

        .upload-header p {
            color: #666;
        }

        .form-group {
            margin-bottom: 1.5625rem;
        }

        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 0.125rem solid #e0e0e0;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-select:focus {
            outline: none;
            border-color: #667eea;
        }

        .upload-drop-zone {
            border: 0.1875rem dashed #cbd5e0;
            border-radius: 0.75rem;
            padding: 3.75rem 1.25rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .upload-drop-zone:hover {
            border-color: #667eea;
            background: #f8f9ff;
        }

        .upload-drop-zone.drag-over {
            border-color: #667eea;
            background: #f0f4ff;
            transform: scale(1.02);
        }

        .upload-icon {
            font-size: 4rem;
            margin-bottom: 1.25rem;
            opacity: 0.5;
        }

        .upload-text {
            font-size: 1.125rem;
            color: #333;
            margin-bottom: 0.625rem;
        }

        .upload-hint {
            font-size: 0.875rem;
            color: #666;
        }

        .file-preview {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5625rem;
            border: 0.125rem solid #e0e0e0;
        }

        .preview-image-container {
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .preview-image {
            max-width: 100%;
            max-height: 25rem;
            border-radius: 0.5rem;
            box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
        }

        .file-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.9375rem;
            background: #f8f9fa;
            border-radius: 0.5rem;
        }

        .file-details {
            flex: 1;
        }

        .file-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.3125rem;
        }

        .file-size {
            font-size: 0.875rem;
            color: #666;
        }

        .progress-container {
            margin: 1.5625rem 0;
        }

        .progress-bar-wrapper {
            background: #e0e0e0;
            border-radius: 1.25rem;
            height: 0.5rem;
            overflow: hidden;
            margin-bottom: 0.625rem;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
            border-radius: 1.25rem;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            color: #666;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.0312rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .btn-primary:hover:not(:disabled) {
            transform: translateY(-0.125rem);
            box-shadow: 0 0.5rem 1rem rgba(102, 126, 234, 0.3);
        }

        .btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: #e0e0e0;
            color: #333;
        }

        .btn-secondary:hover {
            background: #d0d0d0;
        }

        .btn-group {
            display: flex;
            gap: 0.9375rem;
            margin-top: 1.5625rem;
        }

        .verifications-list {
            margin-top: 2.5rem;
        }

        .filter-buttons {
            display: flex;
            gap: 0.625rem;
            margin-bottom: 1.5625rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1rem;
            border: 0.125rem solid #e0e0e0;
            background: white;
            border-radius: 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            border-color: #667eea;
            color: #667eea;
        }

        .filter-btn.active {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }

        .verification-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
            padding-bottom: 0.9375rem;
            border-bottom: 0.0625rem solid #e0e0e0;
        }

        .verification-type {
            display: flex;
            align-items: center;
            gap: 0.9375rem;
        }

        .type-icon {
            font-size: 2rem;
        }

        .verification-type h4 {
            font-size: 1.125rem;
            color: #333;
        }

        .verification-card-body {
            margin-bottom: 0.9375rem;
        }

        .verification-info {
            display: flex;
            justify-content: space-between;
            padding: 0.625rem 0;
            font-size: 0.875rem;
        }

        .info-label {
            color: #666;
        }

        .info-value {
            font-weight: 600;
            color: #333;
        }

        .rejection-reason {
            margin-top: 0.9375rem;
            padding: 0.9375rem;
            background: #fff3cd;
            border-left: 0.25rem solid #ffc107;
            border-radius: 0.5rem;
        }

        .rejection-reason strong {
            display: block;
            margin-bottom: 0.5rem;
            color: #856404;
        }

        .rejection-reason p {
            color: #856404;
            margin: 0;
        }

        .verification-card-footer {
            margin-top: 1.25rem;
            padding-top: 0.9375rem;
            border-top: 0.0625rem solid #e0e0e0;
        }

        .status-approved {
            border-left: 0.25rem solid #28a745;
        }

        .status-pending {
            border-left: 0.25rem solid #ffc107;
        }

        .status-rejected {
            border-left: 0.25rem solid #dc3545;
        }

        .empty-state {
            text-align: center;
            padding: 3.75rem 1.25rem;
            color: #666;
        }

        .empty-state p {
            margin-bottom: 0.625rem;
        }

        .hidden {
            display: none !important;
        }

        .notification {
            position: fixed;
            top: 1.25rem;
            right: 1.25rem;
            padding: 1rem 1.5rem;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transform: translateX(25rem);
            transition: transform 0.3s ease;
            max-width: 25rem;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification-content {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .notification-icon {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .notification-success {
            border-left: 0.25rem solid #28a745;
        }

        .notification-success .notification-icon {
            color: #28a745;
        }

        .notification-error {
            border-left: 0.25rem solid #dc3545;
        }

        .notification-error .notification-icon {
            color: #dc3545;
        }

        .notification-info {
            border-left: 0.25rem solid #17a2b8;
        }

        .notification-info .notification-icon {
            color: #17a2b8;
        }

        .text-sm {
            font-size: 0.875rem;
        }

        .text-gray-600 {
            color: #666;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.75rem;
            }

            .verification-types-grid {
                grid-template-columns: 1fr;
            }

            .content-section {
                padding: 1.25rem;
            }

            .btn-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }
