/* Base styles for the popup */
.dbp-proof-popup {
	position: fixed;
	max-width: 380px; /* increase width */
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 100px;
	padding: 8px 25px 8px 10px;
	z-index: 1000;
	font-family: Arial, sans-serif;
	display: none; /* Add this line to initially hide the popup */
	display: flex; /* ensure flexbox for layout */
    align-items: center; /* vertical centering */
    justify-content: flex-start; /* left-align content */
}

/* Version 1: Modern Card Design */
.dbp-proof-popup.version-1 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dbp-proof-popup.version-1 img {
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.dbp-proof-popup.version-1 span {
	color: white;
	font-weight: 500;
}

/* Version 2: Minimalist Dark */
.dbp-proof-popup.version-2 {
	background-color: #2d3748;
	color: #e2e8f0;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	border: 1px solid #4a5568;
}

.dbp-proof-popup.version-2 img {
	border: 2px solid #4a5568;
}

.dbp-proof-popup.version-2 span {
	color: #e2e8f0;
	font-size: 13px;
}

/* Version 3: Glassmorphism */
.dbp-proof-popup.version-3 {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dbp-proof-popup.version-3 img {
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.dbp-proof-popup.version-3 span {
	color: #1a202c;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Version 4: Vibrant Notification */
.dbp-proof-popup.version-4 {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	color: white;
	border-radius: 25px;
	padding: 15px 20px;
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
	border: none;
}

.dbp-proof-popup.version-4 img {
	border: 3px solid white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dbp-proof-popup.version-4 span {
	color: white;
	font-weight: 600;
}

/* Version 5: Corporate Clean */
.dbp-proof-popup.version-5 {
	background-color: #f8fafc;
	border: 2px solid #e2e8f0;
	border-radius: 6px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dbp-proof-popup.version-5 img {
	border: 2px solid #cbd5e0;
	border-radius: 6px;
}

.dbp-proof-popup.version-5 span {
	color: #2d3748;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 14px;
}

/* Positioning the popup in the bottom corners */
.dbp-bottom-left {
	bottom: 20px;
	left: 20px;
}

.dbp-bottom-right {
	bottom: 20px;
	right: 20px;
}

/* Style for the list of users/leads */
.dbp-proof-popup ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex; /* Align UL content horizontally like in admin preview */
    align-items: center;
    width: 100%; /* fill container so content sticks left */
}

.dbp-proof-popup ul li {
	display: flex;
	align-items: center;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Last item shouldn't have a margin at the bottom */
.dbp-proof-popup ul li:last-child {
	margin-bottom: 0;
}

/* Style for user/lead image */
.dbp-proof-popup img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 10px;
}

/* Style for user/lead name */
.dbp-proof-popup span {
	font-size: 14px;
	color: #333;
}