/* DTECH Certificate of Conformance — modal styles */
.dtech-cofc-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.dtech-cofc-modal {
	background: #fff;
	width: 100%;
	max-width: 780px;
	max-height: 92vh;
	overflow-y: auto;
	border-radius: 4px;
	padding: 28px;
	position: relative;
	box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.dtech-cofc-close {
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	padding: 0 !important;
	margin: 0 !important;
	background: #f8f8f8 !important;
	color: #111111 !important;
	border: none !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	overflow: hidden !important;
	cursor: pointer !important;
	line-height: 1 !important;
	font-family: "Inter Tight", sans-serif !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	transition: background .15s !important;
}
.dtech-cofc-close:hover { background: #e6e8ea !important; }
.dtech-cofc-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0;
	gap: 16px;
}
.dtech-cofc-loading p {
	font-size: 13px;
	color: #666;
	margin: 0;
}
.dtech-cofc-spinner {
	width: 32px;
	height: 32px;
	border: 3px solid #eee;
	border-top-color: #111;
	border-radius: 50%;
	animation: dtech-spin 0.7s linear infinite;
}
@keyframes dtech-spin { to { transform: rotate(360deg); } }
.dtech-cofc-footer {
	margin-top: 16px;
	text-align: right;
}
.dtech-cofc-print-btn {
	display: inline-block !important;
	box-sizing: border-box !important;
	width: auto !important;
	padding: 13px 30px !important;
	margin: 0 !important;
	background: #1b2630 !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	cursor: pointer !important;
	line-height: 1.5 !important;
	text-align: center !important;
	white-space: nowrap !important;
	font-family: "Inter Tight", sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	transition: filter .15s !important;
}
.dtech-cofc-print-btn:hover { filter: brightness(1.12) !important; }
