.xnc-verification-container {
	max-width: 600px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #333;
}

/* Search Card */
.xnc-search-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	margin-bottom: 30px;
	border: 1px solid #eee;
}

.xnc-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1a1a1a;
}

.xnc-subtitle {
	font-size: 15px;
	color: #666;
	margin-bottom: 25px;
}

.xnc-search-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.xnc-search-input {
	padding: 12px 15px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.3s ease;
}

.xnc-search-input:focus {
	border-color: #0073aa;
}

.xnc-search-button {
	background: #0073aa;
	color: #fff;
	border: none;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.xnc-search-button:hover {
	background: #005177;
}

/* Error Card */
.xnc-error-card {
	background: #fee;
	color: #c00;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	font-weight: 600;
	border: 1px solid #fcc;
}

/* Result Card */
.xnc-result-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid #eee;
}

.xnc-result-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.xnc-details-list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.xnc-details-list li {
	padding: 8px 0;
	font-size: 15px;
	line-height: 1.5;
}

.xnc-details-list li strong {
	display: inline-block;
	width: 140px;
	color: #555;
}

.xnc-status-valid {
	color: #008a20;
	font-weight: 600;
}

.xnc-status-revoked {
	color: #d63638;
	font-weight: 600;
}

.xnc-image-wrapper {
	margin: 25px 0;
	text-align: center;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px;
	background: #fafafa;
}

.xnc-certificate-image {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
	margin: 0 auto;
}

/* Buttons */
.xnc-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.xnc-btn {
	display: inline-block;
	text-align: center;
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none !important;
	transition: opacity 0.3s ease;
}

.xnc-btn:hover {
	opacity: 0.9;
}

.xnc-btn-download {
	background: #0073aa;
	color: #fff !important;
}

.xnc-btn-gmail {
	background: #ea4335;
	color: #fff !important;
}

.xnc-btn-linkedin {
	background: #0a66c2;
	color: #fff !important;
}

/* Responsive */
@media (min-width: 600px) {
	.xnc-search-form {
		flex-direction: row;
	}
	.xnc-search-input {
		flex: 1;
	}
	.xnc-search-button {
		width: auto;
	}
	.xnc-actions {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.xnc-btn {
		flex: 1;
		min-width: 160px;
	}
}
