
		/* B2B Telemarketer Frontend Styles - Light Theme */
        .b2b-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

		.b2b-card {
			background: #fff;
			border: 1px solid #e2e8f0;
			border-radius: 12px;
			padding: 24px;
			box-shadow: 0 2px 8px rgba(0,0,0,0.06);
			transition: all 0.3s ease;
		}

		.b2b-card:hover {
			transform: translateY(-4px);
			box-shadow: 0 8px 20px rgba(80, 212, 196, 0.15);
			border-color: #50d4c4;
		}

		.b2b-card-header {
			display: flex;
			justify-content: space-between;
			align-items: start;
			margin-bottom: 15px;
			border-bottom: 1px solid #f0f0f0;
			padding-bottom: 10px;
		}

		.b2b-card-header h4 {
			margin: 0;
			flex: 1;
			color: #1e293b;
			font-size: 1.25em;
			font-weight: 700;
		}

		.b2b-type-badge, .b2b-fraud-badge, .b2b-user-badge {
			background: #50d4c4;
			color: white;
			padding: 6px 12px;
			border-radius: 20px;
			font-size: 0.75em;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}

		.b2b-fraud-badge {
			background: #ef4444;
		}

		.b2b-user-badge.b2b-badge-campaign_buyer { background: #10b981; }
		.b2b-user-badge.b2b-badge-data_vendor { background: #8b5cf6; }
		.b2b-user-badge.b2b-badge-center_company { background: #f59e0b; }
		.b2b-user-badge.b2b-badge-individual_subscriber { background: #6366f1; }

		.b2b-card-content {
			margin-bottom: 15px;
		}

		.b2b-meta-item {
			display: flex;
			justify-content: space-between;
			margin-bottom: 8px;
			padding: 5px 0;
			border-bottom: 1px solid #f8f9fa;
		}

		.b2b-meta-label {
			font-weight: 600;
			color: #64748b;
			min-width: 120px;
			font-size: 0.9em;
		}

		.b2b-meta-value {
			color: #334155;
			flex: 1;
			text-align: right;
			font-weight: 500;
		}

		.b2b-description {
			color: #475569;
			line-height: 1.6;
			margin-top: 12px;
			font-size: 0.95em;
		}

		.b2b-card-footer {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding-top: 15px;
			border-top: 1px solid #f0f0f0;
			font-size: 0.9em;
		}

		.b2b-author {
			color: #7f8c8d;
		}

		.b2b-date {
			color: #95a5a6;
			font-size: 0.85em;
		}

		.b2b-view-btn {
			background: #3498db;
			color: white;
			padding: 8px 16px;
			text-decoration: none;
			border-radius: 4px;
			font-size: 0.9em;
			transition: background 0.2s;
		}

		.b2b-view-btn:hover {
			background: #2980b9;
			color: white;
		}

		.b2b-filters {
			display: flex;
			gap: 15px;
			margin: 20px 0;
			flex-wrap: wrap;
		}

		.b2b-search-field, .b2b-filter-field {
			padding: 8px 12px;
			border: 1px solid #bdc3c7;
			border-radius: 4px;
			font-size: 14px;
		}

        /* Fraud reports search form tweaks */
        .b2b-fraud-search-form .b2b-search-field {
            max-width: none;
        }

        .b2b-search-results {
            font-size: 0.95rem;
            color: #475569;
            margin-bottom: 10px;
        }

		.b2b-search-field {
			flex: 1;
			min-width: 250px;
		}

		.b2b-filter-field {
			min-width: 150px;
		}

		.b2b-no-results {
			text-align: center;
			padding: 40px;
			color: #7f8c8d;
			font-style: italic;
			background: #f8f9fa;
			border-radius: 8px;
		}

		.b2b-login-required {
			text-align: center;
			padding: 40px;
			background: #fff3cd;
			border: 1px solid #ffeaa7;
			border-radius: 8px;
			color: #856404;
		}

		.b2b-login-required a {
			color: #2dbadc;
			font-weight: bold;
		}

		.b2b-user-profile {
			background: white;
			border-radius: 8px;
			padding: 30px;
			box-shadow: 0 2px 10px rgba(0,0,0,0.1);
		}

		.b2b-profile-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 25px;
			padding-bottom: 15px;
			border-bottom: 2px solid #3498db;
		}

		.b2b-profile-header h3 {
			margin: 0;
			color: #2c3e50;
		}

		.b2b-profile-details {
			margin-bottom: 25px;
		}

		.b2b-profile-field {
			padding: 10px 0;
			border-bottom: 1px solid #ecf0f1;
			display: flex;
		}

		.b2b-profile-field strong {
			min-width: 150px;
			color: #7f8c8d;
		}

		.b2b-profile-stats h4 {
			color: #2c3e50;
			margin-bottom: 15px;
		}

		.b2b-stats-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
			gap: 15px;
		}

		.b2b-stat-item {
			background: #f8f9fa;
			padding: 20px;
			text-align: center;
			border-radius: 8px;
			border-left: 4px solid #3498db;
		}

		.b2b-stat-count {
			display: block;
			font-size: 2em;
			font-weight: bold;
			color: #2c3e50;
		}

		.b2b-stat-label {
			color: #7f8c8d;
			font-size: 0.9em;
		}

        .b2b-fraud-list {
            /* Fixed two-column layout for fraud cards (max 2 per row)
               Collapses to a single column on narrow viewports */
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            align-items: start;
            justify-items: stretch;
        }

        @media (max-width: 900px) {
            .b2b-fraud-list {
                grid-template-columns: 1fr;
            }
        }

        /* Dedicated grid for fraud cards: two cards per row on medium+ screens */
        .b2b-fraud-reports-grid {
            /* layout wrapper for heading + list; keep it simple and let .b2b-fraud-list manage columns */
            display: block;
            margin: 12px 0;
        }

        /* Fraud card specific compact styles */
        .b2b-fraud-card {
            padding: 14px;
            border-radius: 10px;
            background: #ffffff;
            border: 1px solid #e6eef6;
            box-shadow: 0 6px 18px rgba(46, 61, 73, 0.04);
            font-size: 14px;
        }

        .b2b-fraud-card .b2b-card-header {
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f1f5f9;
        }

        .b2b-fraud-card .b2b-card-title-section h4.b2b-fraud-entity {
            font-size: 1.05rem;
            margin: 0 0 6px 0;
            color: #1f3340;
        }

        .b2b-fraud-card .b2b-card-content {
            font-size: 0.95rem;
            color: #475569;
            margin-bottom: 10px;
        }

        .b2b-fraud-card .b2b-card-footer {
            padding-top: 10px;
            font-size: 0.85rem;
        }

        .b2b-fraud-card .b2b-view-btn {
            padding: 6px 12px;
            font-size: 0.85rem;
            border-radius: 6px;
        }

        @media (max-width: 800px) {
            .b2b-fraud-reports-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile specific tweaks for compact, readable fraud cards */
        @media (max-width: 600px) {
            .b2b-fraud-list {
                gap: 12px;
                padding-left: 8px;
                padding-right: 8px;
            }

            .b2b-fraud-card {
                padding: 10px;
                font-size: 13px;
                border-radius: 8px;
            }

            .b2b-fraud-card .b2b-card-title-section h4.b2b-fraud-entity {
                font-size: 1rem;
                line-height: 1.2;
            }

            .b2b-fraud-card .b2b-card-content {
                font-size: 0.9rem;
                margin-bottom: 8px;
            }

            .b2b-fraud-card .b2b-card-header {
                display: flex;
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }

            .b2b-fraud-card .b2b-card-meta {
                margin-top: 4px;
                color: #6b7280;
                font-size: 0.85rem;
            }

            .b2b-fraud-card .b2b-view-btn {
                display: block;
                width: 100%;
                padding: 10px 12px;
                box-sizing: border-box;
            }

            .b2b-card-badges span {
                display: inline-block;
                margin-right: 6px;
                margin-bottom: 6px;
                font-size: 0.78rem;
                padding: 3px 7px;
            }

            /* Reduce vote stats block size on small screens */
            .b2b-vote-stats { grid-template-columns: 1fr; }
        }
		/* Responsive Design */
		@media (max-width: 768px) {
			.b2b-grid {
				grid-template-columns: 1fr;
			}
			
			.b2b-filters {
				flex-direction: column;
			}
			
			.b2b-search-field, .b2b-filter-field {
				min-width: auto;
			}
			
			.b2b-card-footer {
				flex-direction: column;
				gap: 10px;
				align-items: flex-start;
			}
			
			.b2b-profile-field {
				flex-direction: column;
			}
			
			.b2b-profile-field strong {
				min-width: auto;
				margin-bottom: 5px;
			}
		}
		/* Voting System Styles */
			.b2b-voting-section {
				background: #f8f9fa;
				border: 1px solid #e9ecef;
				border-radius: 8px;
				padding: 20px;
				margin: 20px 0;
			}

			.b2b-voting-buttons {
				display: flex;
				gap: 15px;
				margin: 15px 0;
				flex-wrap: wrap;
			}

			.b2b-vote-btn {
				flex: 1;
				color: #494949;
				padding: 12px 20px;
				border: 2px solid #dee2e6;
				border-radius: 6px;
				background: white;
				cursor: pointer;
				font-weight: bold;
				transition: all 0.3s;
				min-width: 160px;
			}

			.b2b-vote-true:hover {
				border-color: #28a745;
				background: #f8fff9;
			}

			.b2b-vote-false:hover {
				border-color: #dc3545;
				background: #fff8f8;
			}

			.b2b-vote-btn.b2b-voted {
				color: white;
				border-color: transparent;
			}

			.b2b-vote-true.b2b-voted {
				background: #28a745;
			}

			.b2b-vote-false.b2b-voted {
				background: #dc3545;
			}

			.b2b-vote-stats {
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				gap: 15px;
				margin: 20px 0;
			}

			.b2b-vote-stat {
				text-align: center;
				padding: 15px;
				background: white;
				border-radius: 6px;
				border: 1px solid #e9ecef;
			}

			.b2b-vote-stat span:first-child {
				display: block;
				font-size: 1.5em;
				font-weight: bold;
				color: #495057;
			}

			.b2b-vote-stat span:last-child {
				font-size: 0.9em;
				color: #6c757d;
			}

			.b2b-vote-notice, .b2b-vote-success {
				padding: 10px 15px;
				background: #d1ecf1;
				border: 1px solid #bee5eb;
				border-radius: 4px;
				color: #0c5460;
			}

			.b2b-vote-success {
				background: #d4edda;
				border-color: #c3e6cb;
				color: #155724;
			}

			@media (max-width: 768px) {
				.b2b-voting-buttons {
					flex-direction: column;
				}
				
				.b2b-vote-stats {
					grid-template-columns: 1fr;
				}
			}
			
			
			/* Professional Comments Section Styles */
			.b2b-comments-section {
				background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
				border: 1px solid #e2e8f0;
				border-radius: 12px;
				padding: 30px;
				margin: 30px 0;
				box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
			}

			.b2b-comments-section h4 {
				color: #1e293b;
				font-size: 1.5em;
				font-weight: 700;
				margin: 0 0 8px 0;
				padding-bottom: 12px;
				border-bottom: 2px solid #3b82f6;
				position: relative;
			}

			.b2b-comments-section h4::after {
				content: "";
				position: absolute;
				bottom: -2px;
				left: 0;
				width: 60px;
				height: 2px;
				background: #10b981;
			}

			.b2b-comments-section > p {
				color: #64748b;
				font-size: 0.95em;
				margin-bottom: 25px;
				line-height: 1.6;
			}

			/* Comment Form Styling */
			.b2b-comment-form {
				background: white;
				border: 1px solid #e2e8f0;
				border-radius: 10px;
				padding: 25px;
				margin: 25px 0;
				box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
				transition: all 0.3s ease;
			}

			.b2b-comment-form:focus-within {
				border-color: #3b82f6;
				box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
			}

			.b2b-comment-textarea {
				width: 95%;
				padding: 16px;
				border: 2px solid #f1f5f9;
				border-radius: 8px;
				resize: vertical;
				font-family: inherit;
				font-size: 0.95em;
				line-height: 1.5;
				color: #334155;
				background: #fafbfc;
				transition: all 0.3s ease;
				min-height: 100px;
				margin-bottom: 16px;
			}

			.b2b-comment-textarea:focus {
				outline: none;
				border-color: #3b82f6;
				background: white;
				box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
			}

			.b2b-comment-textarea::placeholder {
				color: #94a3b8;
				font-style: italic;
			}

			.b2b-submit-comment {
				background: linear-gradient(135deg, #10b981 0%, #059669 100%);
				color: white;
				padding: 12px 28px;
				border: none;
				border-radius: 8px;
				cursor: pointer;
				font-weight: 600;
				font-size: 0.95em;
				transition: all 0.3s ease;
				box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
				position: relative;
				overflow: hidden;
			}

			.b2b-submit-comment::before {
				content: "";
				position: absolute;
				top: 0;
				left: -100%;
				width: 100%;
				height: 100%;
				background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
				transition: left 0.5s;
			}

			.b2b-submit-comment:hover::before {
				left: 100%;
			}

			.b2b-submit-comment:hover {
				transform: translateY(-1px);
				box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
			}

			.b2b-submit-comment:active {
				transform: translateY(0);
			}

			.b2b-submit-comment:disabled {
				background: #94a3b8;
				cursor: not-allowed;
				transform: none;
				box-shadow: none;
			}

			/* Comments List Styling */
			.b2b-comments-list {
				margin-top: 35px;
			}

			.b2b-comments-list h5 {
				color: #1e293b;
				font-size: 1.2em;
				font-weight: 600;
				margin: 0 0 20px 0;
				padding-bottom: 12px;
				border-bottom: 1px solid #e2e8f0;
				display: flex;
				align-items: center;
				gap: 8px;
			}

			.b2b-comments-list h5::before {
				content: "💬";
				font-size: 0.9em;
			}

			.b2b-comment-item {
				background: white;
				border: 1px solid #f1f5f9;
				border-radius: 10px;
				padding: 20px;
				margin-bottom: 16px;
				transition: all 0.3s ease;
				position: relative;
				overflow: hidden;
			}

			.b2b-comment-item::before {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				height: 100%;
				width: 4px;
				background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
				opacity: 0;
				transition: opacity 0.3s ease;
			}

			.b2b-comment-item:hover {
				border-color: #e2e8f0;
				box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
				transform: translateY(-1px);
			}

			.b2b-comment-item:hover::before {
				opacity: 1;
			}

			.b2b-comment-header {
				display: flex;
				justify-content: space-between;
				align-items: center;
				margin-bottom: 12px;
				padding-bottom: 12px;
				border-bottom: 1px solid #f8fafc;
			}

			.b2b-comment-author {
				font-weight: 600;
				color: #1e293b;
				font-size: 0.95em;
				display: flex;
				align-items: center;
				gap: 6px;
			}

			.b2b-comment-author::before {
				content: "👤";
				font-size: 0.8em;
				opacity: 0.7;
			}

			.b2b-comment-date {
				color: #64748b;
				font-size: 0.85em;
				background: #f1f5f9;
				padding: 4px 8px;
				border-radius: 12px;
				font-weight: 500;
			}

			.b2b-comment-content {
				line-height: 1.6;
				color: #475569;
				font-size: 0.95em;
				margin-bottom: 8px;
				position: relative;
			}

			.b2b-delete-comment {
				background: #ef4444;
				color: white;
				border: none;
				padding: 6px 12px;
				border-radius: 6px;
				font-size: 0.8em;
				cursor: pointer;
				transition: all 0.3s ease;
				font-weight: 500;
				opacity: 0;
				transform: translateX(-10px);
			}

			.b2b-comment-item:hover .b2b-delete-comment {
				opacity: 1;
				transform: translateX(0);
			}

			.b2b-delete-comment:hover {
				background: #dc2626;
				transform: translateY(-1px);
				box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
			}

			/* No Comments State */
			.b2b-no-comments {
				text-align: center;
				color: #64748b;
				font-style: italic;
				padding: 40px 20px;
				background: #f8fafc;
				border: 2px dashed #e2e8f0;
				border-radius: 10px;
				font-size: 0.95em;
			}

			.b2b-no-comments::before {
				content: "💭";
				font-size: 2em;
				display: block;
				margin-bottom: 10px;
				opacity: 0.6;
			}

			/* Loading States */
			.b2b-comment-loading {
				opacity: 0.6;
				pointer-events: none;
			}

			.b2b-comment-loading::after {
				content: "...";
				animation: loadingDots 1.5s infinite;
			}

			@keyframes loadingDots {
				0%, 20% { content: "."; }
				40% { content: ".."; }
				60%, 100% { content: "..."; }
			}

			/* Responsive Design */
			@media (max-width: 768px) {
				.b2b-comments-section {
					padding: 20px;
					margin: 20px 0;
				}
				
				.b2b-comment-form {
					padding: 20px;
				}
				
				.b2b-comment-header {
					flex-direction: column;
					align-items: flex-start;
					gap: 8px;
				}
				
				.b2b-comment-date {
					align-self: flex-start;
				}
				
				.b2b-delete-comment {
					opacity: 1;
					transform: translateX(0);
					margin-top: 12px;
				}
				
				.b2b-comments-section h4 {
					font-size: 1.3em;
				}
			}

			/* Dark mode support */
			@media (prefers-color-scheme: dark) {
				.b2b-comments-section {
					background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
					border-color: #475569;
				}
				
				.b2b-comments-section h4 {
					color: #f1f5f9;
				}
				
				.b2b-comment-form {
					background: #334155;
					border-color: #475569;
				}
				
				.b2b-comment-textarea {
					background: #1e293b;
					border-color: #475569;
					color: #f1f5f9;
				}
				
				.b2b-comment-item {
					background: #334155;
					border-color: #475569;
				}
				
				.b2b-comment-author {
					color: #f1f5f9;
				}
				
				.b2b-comment-content {
					color: #cbd5e1;
				}
				
				.b2b-no-comments {
					background: #334155;
					border-color: #475569;
					color: #94a3b8;
				}
			}
			.b2b-comment-success {
				background: #d4edda;
				color: #155724;
				padding: 12px 16px;
				border: 1px solid #c3e6cb;
				border-radius: 6px;
				margin-bottom: 20px;
				font-weight: 500;
			}
			
			/* Smooth highlight effect for comment section */
			.b2b-comments-section {
				transition: all 0.5s ease;
			}

			/* Focus state for comment textarea */
			.b2b-comment-textarea:focus {
				border-color: #3b82f6;
				box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
				outline: none;
			}
		
		
		/* Registration Form Styles */
		.b2b-registration-container {
			max-width: 600px;
			margin: 0 auto;
			padding: 30px 20px;
		}

		.b2b-registration-form {
			background: white;
			border-radius: 12px;
			padding: 40px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
			border: 1px solid #e2e8f0;
		}

		.b2b-registration-form h3 {
			color: #1e293b;
			font-size: 1.8em;
			font-weight: 700;
			margin-bottom: 10px;
			text-align: center;
		}

		.b2b-registration-form > p {
			color: #64748b;
			text-align: center;
			margin-bottom: 30px;
			font-size: 1.1em;
		}

		.b2b-form-row {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 20px;
			margin-bottom: 20px;
		}

		.b2b-form-row:last-child {
			margin-bottom: 0;
		}

		.b2b-form-group {
			display: flex;
			flex-direction: column;
		}

		.b2b-form-group label {
			font-weight: 600;
			color: #374151;
			margin-bottom: 8px;
			font-size: 0.95em;
		}

		.b2b-form-group input,
		.b2b-form-group select {
			padding: 12px 16px;
			border: 2px solid #e5e7eb;
			border-radius: 8px;
			font-size: 1em;
			transition: all 0.3s ease;
			background: white;
		}

		.b2b-form-group input:focus,
		.b2b-form-group select:focus {
			outline: none;
			border-color: #3b82f6;
			box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
		}

		.b2b-form-group small {
			color: #6b7280;
			font-size: 0.85em;
			margin-top: 4px;
		}

		/* Role-specific fields */
		.b2b-role-fields {
			margin: 25px 0;
			padding: 25px;
			background: #f8fafc;
			border-radius: 8px;
			border-left: 4px solid #3b82f6;
		}

		.b2b-role-section {
			display: none;
		}

		.b2b-role-section h4 {
			color: #1e293b;
			margin-bottom: 15px;
			font-size: 1.2em;
			border-bottom: 2px solid #e2e8f0;
			padding-bottom: 8px;
		}

		/* Buttons */
		.b2b-register-btn {
			background: linear-gradient(135deg, #50d4c4 0%, #3fb8a8 100%);
			color: white;
			padding: 14px 30px;
			border: none;
			border-radius: 30px;
			font-size: 1em;
			font-weight: 700;
			cursor: pointer;
			transition: all 0.3s ease;
			width: 100%;
			box-shadow: 0 4px 15px rgba(80, 212, 196, 0.3);
			text-transform: uppercase;
			letter-spacing: 1px;
		}

		.b2b-register-btn:hover {
			transform: translateY(-2px);
			box-shadow: 0 6px 20px rgba(80, 212, 196, 0.4);
			background: linear-gradient(135deg, #3fb8a8 0%, #2da090 100%);
		}

		.b2b-register-btn:active {
			transform: translateY(0);
		}

		/* Messages */
		.b2b-registration-error {
			background: #fef2f2;
			color: #dc2626;
			padding: 15px 20px;
			border-radius: 8px;
			border: 1px solid #fecaca;
			margin-bottom: 20px;
			font-weight: 500;
		}

		.b2b-registration-success {
			background: #f0fdf4;
			color: #16a34a;
			padding: 15px 20px;
			border-radius: 8px;
			border: 1px solid #bbf7d0;
			margin-bottom: 20px;
			font-weight: 500;
		}

		.b2b-already-logged-in {
			background: #fffbeb;
			color: #d97706;
			padding: 20px;
			border-radius: 8px;
			border: 1px solid #fed7aa;
			text-align: center;
		}

		/* Password strength indicator */
		.b2b-password-strength {
			margin-top: 8px;
			padding: 6px 10px;
			border-radius: 4px;
			font-size: 0.85em;
			font-weight: 500;
		}

		.b2b-password-strength.very-weak {
			background: #fef2f2;
			color: #dc2626;
			border: 1px solid #fecaca;
		}

		.b2b-password-strength.weak {
			background: #fffbeb;
			color: #d97706;
			border: 1px solid #fed7aa;
		}

		.b2b-password-strength.medium {
			background: #f0fdf4;
			color: #16a34a;
			border: 1px solid #bbf7d0;
		}

		.b2b-password-strength.strong {
			background: #f0fdf4;
			color: #15803d;
			border: 1px solid #86efac;
		}

		.b2b-password-match {
			margin-top: 8px;
			padding: 6px 10px;
			border-radius: 4px;
			font-size: 0.85em;
			font-weight: 500;
		}

		.b2b-password-match.match {
			background: #f0fdf4;
			color: #16a34a;
			border: 1px solid #bbf7d0;
		}

		.b2b-password-match.no-match {
			background: #fef2f2;
			color: #dc2626;
			border: 1px solid #fecaca;
		}

		/* Login link */
		.b2b-login-link {
			text-align: center;
			margin-top: 25px;
			padding-top: 20px;
			border-top: 1px solid #e5e7eb;
			color: #6b7280;
		}

		.b2b-login-link a {
			color: #3b82f6;
			font-weight: 500;
			text-decoration: none;
		}

		.b2b-login-link a:hover {
			text-decoration: underline;
		}

		/* Responsive */
		@media (max-width: 768px) {
			.b2b-form-row {
				grid-template-columns: 1fr;
				gap: 15px;
			}
			
			.b2b-registration-form {
				padding: 25px 20px;
			}
			
			.b2b-role-fields {
				padding: 20px 15px;
			}
		}
		
		
		/* Login Page Styles */
.b2b-login-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 0 20px;
}

.b2b-login-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.b2b-login-form h3 {
    color: #1e293b;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.b2b-login-form > p {
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.b2b-login-form .b2b-form-group {
    margin-bottom: 20px;
}

.b2b-login-form label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95em;
    display: block;
}

.b2b-login-form input[type="text"],
.b2b-login-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f8fafc;
    box-sizing: border-box;
    color: #334155;
    font-weight: 500;
}

.b2b-login-form input[type="text"]:focus,
.b2b-login-form input[type="password"]:focus {
    outline: none;
    border-color: #50d4c4;
    background: white;
    box-shadow: 0 0 0 3px rgba(80, 212, 196, 0.1);
}

.b2b-login-btn {
    background: linear-gradient(135deg, #50d4c4 0%, #3fb8a8 100%);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(80, 212, 196, 0.3);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b2b-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 212, 196, 0.4);
    background: linear-gradient(135deg, #3fb8a8 0%, #2da090 100%);
}

.b2b-login-btn:active {
    transform: translateY(0);
}

/* Login Links */
.b2b-login-links {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.b2b-login-links a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.95em;
}

.b2b-login-links a:hover {
    text-decoration: underline;
}

/* Remember Me Checkbox */
.b2b-remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.b2b-remember-me input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.b2b-remember-me label {
    margin-bottom: 0;
    font-weight: normal;
    color: #64748b;
}

/* Error Messages */
.b2b-login-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #fecaca;
    margin-bottom: 20px;
    font-weight: 500;
}

.b2b-login-success {
    background: #f0fdf4;
    color: #16a34a;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    margin-bottom: 20px;
    font-weight: 500;
}

/* WordPress Default Login Page Styling */
.login form {
    background: white !important;
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
}

.login h1 a {
    background-image: none !important;
    text-indent: 0 !important;
    width: auto !important;
    height: auto !important;
    font-size: 2em !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 20px !important;
}

.login label {
    font-weight: 600 !important;
    color: #374151 !important;
    font-size: 0.95em !important;
}

.login input[type="text"],
.login input[type="password"] {
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 1em !important;
    transition: all 0.3s ease !important;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border-color: #50d4c4 !important;
    box-shadow: 0 0 0 3px rgba(80, 212, 196, 0.1) !important;
    outline: none !important;
}

.wp-core-ui .button-primary {
    background: linear-gradient(135deg, #50d4c4 0%, #3fb8a8 100%) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    box-shadow: 0 4px 15px rgba(80, 212, 196, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.wp-core-ui .button-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(80, 212, 196, 0.4) !important;
    background: linear-gradient(135deg, #3fb8a8 0%, #2da090 100%) !important;
}

.login #backtoblog a,
.login #nav a {
    color: #50d4c4 !important;
    font-weight: 600 !important;
}

.login #backtoblog a:hover,
.login #nav a:hover {
    color: #3fb8a8 !important;
    text-decoration: underline !important;
}

/* Responsive */
@media (max-width: 768px) {
    .b2b-login-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .b2b-login-form {
        padding: 30px 25px;
    }
    
    .login form {
        padding: 25px 20px !important;
    }
}

/* Custom Login Form Variations */
.b2b-login-with-registration {
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    align-items: start;
}

.b2b-login-divider {
    background: #e5e7eb;
    height: 100%;
    margin: 0 20px;
}

.b2b-registration-side {
    padding: 30px;
}

.b2b-registration-side h4 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.b2b-registration-side p {
    color: #64748b;
    margin-bottom: 20px;
}

.b2b-register-now-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.b2b-register-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .b2b-login-with-registration {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .b2b-login-divider {
        height: 1px;
        width: 100%;
        margin: 20px 0;
    }
}

/* Enhanced Public Profiles Styling */
.b2b-public-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Profile Header */
.b2b-profile-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: start;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    position: relative;
}

.b2b-profile-actions {
    position: absolute;
    top: 20px;
    right: 20px;
}

.b2b-edit-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.b2b-edit-profile-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.b2b-edit-profile-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}


.b2b-profile-avatar {
    text-align: center;
}

.b2b-profile-avatar img {
    border-radius: 50%;
    border: 4px solid #3b82f6;
}

.b2b-profile-info {
    flex: 1;
}

.b2b-profile-name {
    font-size: 2.2em;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.b2b-profile-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.b2b-user-badge {
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.b2b-badge-campaign_buyer { background: linear-gradient(135deg, #10b981, #059669); }
.b2b-badge-data_vendor { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.b2b-badge-center_company { background: linear-gradient(135deg, #f59e0b, #d97706); }
.b2b-badge-individual_subscriber { background: linear-gradient(135deg, #6b7280, #4b5563); }

.b2b-member-since {
    color: #64748b;
    font-size: 0.95em;
    background: #f8fafc;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.b2b-profile-bio {
    color: #475569;
    line-height: 1.6;
    font-size: 1.05em;
}

/* Profile Stats */
.b2b-user-stats {
    display: flex;
    gap: 20px;
    text-align: center;
}

.b2b-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.b2b-stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.b2b-stat-label {
    font-size: 0.85em;
    color: #64748b;
    font-weight: 500;
}

/* Profile Content Layout */
.b2b-profile-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

.b2b-profile-main {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.b2b-profile-sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 20px;
}

/* Profile Sections */
.b2b-profile-section {
    margin-bottom: 35px;
}

.b2b-profile-section:last-child {
    margin-bottom: 0;
}

.b2b-profile-section h3 {
    color: #1e293b;
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.b2b-profile-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
}

/* Profile Fields */
.b2b-profile-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b2b-profile-field {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
}

.b2b-profile-field strong {
    min-width: 140px;
    color: #374151;
    font-weight: 600;
    font-size: 0.95em;
}

.b2b-profile-field span {
    color: #475569;
    flex: 1;
}

.b2b-specialty-badge {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 500;
}

/* User Posts/Activity */
.b2b-user-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b2b-user-post-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.b2b-user-post-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.b2b-user-post-item h4 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
}

.b2b-user-post-item h4 a {
    color: #1e293b;
    text-decoration: none;
}

.b2b-user-post-item h4 a:hover {
    color: #3b82f6;
}

.b2b-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: #64748b;
}

.b2b-post-date {
    color: #6b7280;
}

.b2b-post-budget, .b2b-post-type {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
}

.b2b-post-excerpt {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95em;
    margin-top: 8px;
}

/* Activity Items */
.b2b-user-activity {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b2b-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.b2b-activity-icon {
    font-size: 1.2em;
    margin-top: 2px;
}

.b2b-activity-content {
    flex: 1;
}

.b2b-activity-content p {
    margin: 0 0 5px 0;
    color: #374151;
    font-size: 0.95em;
}

.b2b-activity-content small {
    color: #6b7280;
    font-style: italic;
}

.b2b-activity-content a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
}

.b2b-activity-content a:hover {
    text-decoration: underline;
}

/* View All Links */
.b2b-view-all {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.b2b-view-all a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.b2b-view-all a:hover {
    text-decoration: underline;
}

.b2b-view-all a::after {
    content: '→';
    transition: transform 0.3s ease;
}

.b2b-view-all a:hover::after {
    transform: translateX(3px);
}

/* Role-specific profile variations */
.b2b-campaign-buyer-profile .b2b-profile-field strong {
    color: #059669;
}

.b2b-data-vendor-profile .b2b-profile-field strong {
    color: #7c3aed;
}

.b2b-center-company-profile .b2b-profile-field strong {
    color: #d97706;
}

.b2b-individual-subscriber-profile .b2b-profile-field strong {
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .b2b-profile-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .b2b-profile-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .b2b-profile-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .b2b-profile-meta {
        justify-content: center;
    }
    
    .b2b-user-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .b2b-profile-main,
    .b2b-profile-sidebar {
        padding: 25px 20px;
    }
    
    .b2b-profile-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .b2b-profile-field strong {
        min-width: auto;
    }
    
    .b2b-stat-number {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .b2b-public-profile {
        padding: 20px 15px;
    }
    
    .b2b-profile-name {
        font-size: 1.8em;
    }
    
    .b2b-user-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .b2b-stat-item {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}

/* Empty State Styling */
.b2b-profile-section p:only-child {
    color: #64748b;
    font-style: italic;
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
}

/* Loading States */
.b2b-profile-loading {
    opacity: 0.7;
    pointer-events: none;
}

.b2b-profile-loading::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}


.b2b-admin-stats { 
	display: grid; grid-template-columns: 1fr 1fr; gap: 10px; 
}
.b2b-admin-stat { 
	text-align: center; padding: 10px; background: #f8f9fa; border-radius: 4px; 
}
.b2b-admin-stat strong { 
	display: block; font-size: 1.5em; color: #2271b1; 
}
.b2b-admin-stat span { 
	font-size: 0.9em; color: #646970; 
}

/* ===== USER DASHBOARD STYLES ===== */

/* Dashboard Container */
.b2b-user-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Dashboard Header */
.b2b-dashboard-header {
    background: linear-gradient(135deg, #50d4c4 0%, #3fb8a8 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(80, 212, 196, 0.2);
    position: relative;
    overflow: hidden;
}

.b2b-dashboard-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.b2b-dashboard-welcome {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.b2b-welcome-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.b2b-profile-image {
    flex-shrink: 0;
}

.b2b-profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.b2b-welcome-text {
    display: flex;
    flex-direction: column;
}

.b2b-welcome-message h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.b2b-welcome-message p {
    font-size: 1.2em;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Profile Completion */
.b2b-profile-completion {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.b2b-completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.b2b-completion-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.b2b-completion-progress {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.b2b-completion-hint {
    margin: 0 0 12px 0;
    font-size: 0.9em;
    opacity: 0.8;
}

.b2b-complete-profile-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.b2b-complete-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white !important;
}

/* Dashboard Layout */
.b2b-dashboard-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.b2b-dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.b2b-dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 20px;
}

/* Quick Actions */
.b2b-quick-actions h3 {
    color: #1e293b;
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.b2b-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.b2b-action-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.b2b-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(80, 212, 196, 0.15);
    border-color: #50d4c4;
    text-decoration: none;
    color: inherit;
}

.b2b-admin-card {
    background: linear-gradient(135deg, #50d4c4 0%, #3fb8a8 100%);
    color: white;
    border: none;
}

.b2b-admin-card .b2b-action-content strong,
.b2b-admin-card .b2b-action-content span {
    color: white;
}

.b2b-admin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(80, 212, 196, 0.3);
    border-color: transparent;
    color: white;
}


.b2b-action-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.b2b-action-content {
    flex: 1;
}

.b2b-action-content strong {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.b2b-action-content span {
    color: #64748b;
    font-size: 0.9em;
    line-height: 1.4;
}

/* Stats Grid */
.b2b-dashboard-stats h3 {
    color: #1e293b;
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.b2b-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.b2b-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.b2b-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #50d4c4, #3fb8a8);
}

.b2b-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(80, 212, 196, 0.15);
    border-color: #50d4c4;
}

.b2b-stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 8px;
}

.b2b-stat-label {
    color: #64748b;
    font-size: 0.95em;
    margin-bottom: 8px;
    display: block;
}

.b2b-stat-trend {
    font-size: 0.85em;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.b2b-stat-trend.positive {
    background: #dcfce7;
    color: #166534;
}

.b2b-stat-trend.negative {
    background: #fecaca;
    color: #dc2626;
}

.b2b-stat-trend.neutral {
    background: #fef3c7;
    color: #92400e;
}

/* Quick Stats Sidebar */
.b2b-quick-stats,
.b2b-recent-activity,
.b2b-recommendations {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.b2b-quick-stats h3,
.b2b-recent-activity h3,
.b2b-recommendations h3 {
    color: #1e293b;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.b2b-stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b2b-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.b2b-stat-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.b2b-stat-icon {
    font-size: 1.5em;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.b2b-stat-info {
    flex: 1;
}

.b2b-stat-info strong {
    display: block;
    font-size: 1.3em;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.b2b-stat-info span {
    color: #64748b;
    font-size: 0.9em;
}

/* Recent Activity */
.b2b-activity-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b2b-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.b2b-activity-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateX(3px);
}

.b2b-activity-icon {
    font-size: 1.2em;
    margin-top: 2px;
    flex-shrink: 0;
}

.b2b-activity-content {
    flex: 1;
}

.b2b-activity-content p {
    margin: 0 0 5px 0;
    color: #374151;
    font-size: 0.95em;
    line-height: 1.4;
}

.b2b-activity-content small {
    color: #6b7280;
    font-size: 0.85em;
}

.b2b-activity-content a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
}

.b2b-activity-content a:hover {
    text-decoration: underline;
}

.b2b-no-activity {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
}

/* Recommendations */
.b2b-recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b2b-recommendation-item {
    padding: 15px;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.b2b-recommendation-item strong {
    display: block;
    color: #0369a1;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.b2b-recommendation-item p {
    margin: 0;
    color: #475569;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Recent Lists */
.b2b-recent-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b2b-recent-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
}

.b2b-recent-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.b2b-recent-item h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.b2b-recent-item h4 a {
    color: #1e293b;
    text-decoration: none;
}

.b2b-recent-item h4 a:hover {
    color: #3b82f6;
}

.b2b-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #64748b;
}

.b2b-item-type,
.b2b-item-budget,
.b2b-item-price {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.b2b-item-date {
    color: #6b7280;
}

.b2b-item-actions {
    display: flex;
    gap: 10px;
}

.b2b-edit-btn,
.b2b-view-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.b2b-edit-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.b2b-edit-btn:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.b2b-view-btn {
    background: #3b82f6;
    color: white;
    border: 1px solid #3b82f6;
}

.b2b-view-btn:hover {
    background: #2563eb;
    color: white;
}

/* Empty States */
.b2b-empty-state {
    text-align: center;
    padding: 50px 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.b2b-empty-state p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Buttons */
.b2b-primary-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.b2b-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.b2b-secondary-btn {
    background: #2ba79e;
    color: #374151;
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.b2b-secondary-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    text-decoration: none;
}

/* Login Required */
.b2b-login-required {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.b2b-login-required h3 {
    color: #1e293b;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.b2b-login-required p {
    color: #64748b;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.b2b-login-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Skill Development */
.b2b-skill-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.b2b-skill-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.b2b-skill-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.b2b-skill-card h4 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 1.1em;
}

.b2b-skill-card p {
    margin: 0 0 15px 0;
    color: #64748b;
    font-size: 0.9em;
    line-height: 1.5;
}

.b2b-skill-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.b2b-progress-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.b2b-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.b2b-skill-progress span {
    color: #64748b;
    font-size: 0.85em;
    font-weight: 500;
    min-width: 60px;
}

.b2b-skill-actions {
    text-align: center;
}

/* Platform Overview */
.b2b-overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.b2b-overview-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.b2b-overview-stat:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.b2b-overview-stat strong {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.b2b-overview-stat span {
    color: #64748b;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .b2b-dashboard-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .b2b-dashboard-sidebar {
        position: static;
        order: -1;
    }
    
    .b2b-action-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .b2b-user-dashboard {
        padding: 15px;
    }
    
    .b2b-dashboard-header {
        padding: 30px 25px;
    }
    
    .b2b-dashboard-welcome {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .b2b-welcome-content {
        flex-direction: column;
        text-align: center;
    }
    
    .b2b-profile-image img {
        width: 64px;
        height: 64px;
    }
    
    .b2b-welcome-message h1 {
        font-size: 2em;
    }
    
    .b2b-stats-grid,
    .b2b-action-grid {
        grid-template-columns: 1fr;
    }
    
    .b2b-quick-actions,
    .b2b-dashboard-stats,
    .b2b-quick-stats,
    .b2b-recent-activity,
    .b2b-recommendations {
        padding: 20px;
    }
    
    .b2b-login-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .b2b-primary-btn,
    .b2b-secondary-btn {
        width: 200px;
        text-align: center;
    }
    
    .b2b-skill-suggestions {
        grid-template-columns: 1fr;
    }
    
    .b2b-overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .b2b-dashboard-header {
        padding: 25px 20px;
    }
    
    .b2b-welcome-message h1 {
        font-size: 1.6em;
    }
    
    .b2b-stat-number {
        font-size: 2em;
    }
    
    .b2b-action-card {
        padding: 20px;
    }
    
    .b2b-overview-stats {
        grid-template-columns: 1fr;
    }
    
    .b2b-item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Role-specific color variations */
.b2b-campaign-buyer-dashboard .b2b-stat-card::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.b2b-data-vendor-dashboard .b2b-stat-card::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.b2b-center-company-dashboard .b2b-stat-card::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.b2b-individual-subscriber-dashboard .b2b-stat-card::before {
    background: linear-gradient(90deg, #6b7280, #4b5563);
}
/* Fraud Report Card Styling */
.b2b-fraud-card {
    border: 1px solid #ffe6e6;
    background: #fffafa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.b2b-fraud-card:hover {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.b2b-card-header {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 20px;
    border-bottom: 1px solid #ffcdd2;
}

.b2b-card-title-section {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.b2b-fraud-entity {
    font-size: 1.4em;
    font-weight: 700;
    color: #c62828;
    margin: 0;
    flex: 1;
}

.b2b-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.b2b-fraud-badge {
    background: #ff4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.b2b-entity-badge {
    background: #ff9800;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
}

.b2b-loss-badge {
    background: #f44336;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.b2b-card-meta {
    text-align: right;
    color: #666;
    font-size: 0.9em;
}

.b2b-card-content {
    padding: 20px;
}

/* Info Grid */
.b2b-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.b2b-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.b2b-meta-icon {
    font-size: 1.2em;
}

.b2b-meta-content {
    display: flex;
    flex-direction: column;
}

.b2b-meta-label {
    font-size: 0.85em;
    color: #666;
    font-weight: 500;
}

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

.loss-amount {
    color: #e53935;
    font-weight: 700;
}

/* Section Styling */
.b2b-section-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #c62828;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffcdd2;
}

.b2b-contact-section,
.b2b-social-section,
.b2b-evidence-section,
.b2b-files-section {
    margin-bottom: 20px;
}

/* Contact Grid */
.b2b-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.b2b-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.b2b-contact-icon {
    font-size: 1.1em;
}

.b2b-contact-value {
    color: #333;
    text-decoration: none;
}

.b2b-contact-value:hover {
    color: #c62828;
}

/* Social Grid */
.b2b-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.b2b-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #e3f2fd;
    border-radius: 6px;
    text-decoration: none;
    color: #1976d2;
    transition: all 0.2s ease;
}

.b2b-social-link:hover {
    background: #bbdefb;
    transform: translateY(-1px);
}

.b2b-social-icon {
    font-size: 1.1em;
}

.b2b-social-platform {
    font-size: 0.9em;
    font-weight: 500;
}

/* Evidence Section */
.b2b-evidence-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    line-height: 1.5;
}

/* Files Section */
.b2b-files-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.b2b-file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #e8f5e8;
    border-radius: 6px;
    text-decoration: none;
    color: #2e7d32;
    transition: all 0.2s ease;
}

.b2b-file-item:hover {
    background: #c8e6c9;
}

.b2b-file-icon {
    font-size: 1.1em;
}

.b2b-file-name {
    font-size: 0.9em;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Card Footer */
.b2b-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

.b2b-footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.b2b-author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.b2b-author-icon {
    font-size: 1.1em;
}

.b2b-anonymous-badge {
    background: #757575;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.b2b-footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.b2b-date {
    color: #666;
    font-size: 0.9em;
}

.b2b-view-btn {
    background: #c62828;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.b2b-view-btn:hover {
    background: #b71c1c;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .b2b-card-title-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .b2b-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .b2b-info-grid {
        grid-template-columns: 1fr;
    }
    
    .b2b-social-grid {
        justify-content: center;
    }
}

/* Pagination Styles */
.b2b-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.b2b-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.b2b-pagination .page-numbers:hover {
    background: #f8fafc;
    border-color: #50d4c4;
    color: #50d4c4;
    transform: translateY(-2px);
}

.b2b-pagination .page-numbers.current {
    background: linear-gradient(135deg, #50d4c4 0%, #3fb8a8 100%);
    border-color: #50d4c4;
    color: #fff;
    cursor: default;
}

.b2b-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    pointer-events: none;
    min-width: auto;
}

.b2b-pagination .page-numbers.prev,
.b2b-pagination .page-numbers.next {
    padding: 8px 16px;
    gap: 6px;
}

.b2b-pagination .page-numbers.prev:hover,
.b2b-pagination .page-numbers.next:hover {
    background: linear-gradient(135deg, #50d4c4 0%, #3fb8a8 100%);
    color: #fff;
}

/* Mobile responsive pagination */
@media (max-width: 768px) {
    .b2b-pagination {
        gap: 6px;
        margin: 30px 0 20px;
    }
    
    .b2b-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .b2b-pagination .page-numbers.prev,
    .b2b-pagination .page-numbers.next {
        padding: 6px 12px;
    }
}