.dmph-check {
	background: var(--dmph-bg, #ffffff);
	border: 1px solid var(--dmph-border, #d9e1e8);
	border-radius: var(--dmph-radius, 8px);
	color: var(--dmph-text, #17212b);
	max-width: 760px;
	padding: 24px;
}

.dmph-width-narrow {
	max-width: 560px;
}

.dmph-width-wide {
	max-width: 980px;
}

.dmph-width-full {
	max-width: none;
	width: 100%;
}

.dmph-theme-inherit {
	background: transparent;
	border-color: transparent;
	padding: 0;
}

.dmph-theme-transparent {
	background: transparent;
}

.dmph-header h2 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
}

.dmph-header p {
	margin: 0 0 20px;
	color: var(--dmph-muted, #4b5b68);
}

.dmph-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.dmph-layout-one .dmph-grid {
	grid-template-columns: 1fr;
}

.dmph-spacing-compact {
	padding: 18px;
}

.dmph-spacing-compact .dmph-grid {
	gap: 10px;
}

.dmph-spacing-relaxed {
	padding: 32px;
}

.dmph-spacing-relaxed .dmph-grid {
	gap: 18px;
}

.dmph-grid label,
.dmph-consent {
	display: grid;
	gap: 6px;
	font-weight: 600;
}

.dmph-wide {
	grid-column: 1 / -1;
}

.dmph-grid input,
.dmph-grid select,
.dmph-grid textarea {
	background: #ffffff;
	border: 1px solid var(--dmph-border, #b9c6d1);
	border-radius: calc(var(--dmph-radius, 8px) * 0.75);
	color: var(--dmph-text, #17212b);
	font: inherit;
	padding: 10px 12px;
	width: 100%;
}

.dmph-grid small {
	color: var(--dmph-muted, #4b5b68);
	font-weight: 400;
}

.dmph-labels-hidden .dmph-field > span {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.dmph-consent {
	align-items: start;
	display: flex;
	font-weight: 400;
	gap: 10px;
	margin: 16px 0;
}

.dmph-button {
	background: var(--dmph-button-bg, #125c6f);
	border: 0;
	border-radius: calc(var(--dmph-radius, 8px) * 0.75);
	color: var(--dmph-button-text, #ffffff);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	padding: 11px 16px;
}

.dmph-results {
	border-top: 1px solid var(--dmph-border, #e4ebf1);
	margin-top: 20px;
	padding-top: 18px;
}

.dmph-results h3 {
	margin: 0 0 12px;
}

.dmph-match {
	border: 1px solid var(--dmph-border, #d9e1e8);
	border-radius: var(--dmph-radius, 8px);
	padding: 16px;
}

.dmph-match strong,
.dmph-match small {
	display: block;
}

.dmph-match small,
.dmph-match p,
.dmph-status {
	color: var(--dmph-muted, #4b5b68);
}

.dmph-error {
	color: #9c2f2f;
	font-weight: 700;
}

.dmph-choice-group {
	display: grid;
	gap: 8px;
}

.dmph-choice-group label {
	align-items: center;
	display: flex;
	font-weight: 400;
	gap: 8px;
}

.dmph-choice-group input {
	width: auto;
}

@media (max-width: 640px) {
	.dmph-check {
		padding: 18px;
	}

	.dmph-grid {
		grid-template-columns: 1fr;
	}
}
