.dps-recall-checker {
	--dps-recall-accent: #dc2d13;
	--dps-recall-accent-dark: #a91f0d;
	--dps-recall-border: #d8dde3;
	--dps-recall-text: #20252b;
	--dps-recall-muted: #5f6872;
	--dps-recall-surface: #fff;
	--dps-recall-focus: #145da0;
	box-sizing: border-box;
	color: var(--dps-recall-text);
	font: inherit;
	margin: 1.5rem auto;
	max-width: 760px;
	width: 100%;
}

.dps-recall-checker *,
.dps-recall-checker *::before,
.dps-recall-checker *::after {
	box-sizing: inherit;
}

.dps-recall-form {
	background: var(--dps-recall-surface);
	border: 1px solid var(--dps-recall-border);
	border-radius: 6px;
	box-shadow: 0 10px 30px rgba(25, 32, 40, 0.08);
	margin: 0;
	padding: clamp(1.25rem, 4vw, 2rem);
}

.dps-recall-label {
	color: var(--dps-recall-text);
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 0.35rem;
}

.dps-recall-help {
	color: var(--dps-recall-muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 0 0.85rem;
}

.dps-recall-controls {
	display: flex;
	gap: 0.75rem;
}

.dps-recall-checker .dps-recall-input {
	appearance: none;
	background: #fff !important;
	border: 2px solid #aeb6bf !important;
	border-radius: 4px !important;
	color: #111820 !important;
	flex: 1 1 auto;
	font: inherit;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.4;
	height: 48px !important;
	min-height: 48px !important;
	min-width: 0;
	padding: 0.7rem 0.85rem !important;
	text-transform: uppercase;
}

.dps-recall-checker .dps-recall-input:hover {
	border-color: #727d88 !important;
}

.dps-recall-checker .dps-recall-input::placeholder {
	color: #6b747e;
	font-size: 14px;
	letter-spacing: normal;
	opacity: 1;
	text-transform: none;
}

.dps-recall-checker .dps-recall-input:focus,
.dps-recall-submit:focus-visible,
.dps-recall-result:focus-visible {
	border-color: var(--dps-recall-focus) !important;
	box-shadow: 0 0 0 3px rgba(20, 93, 160, 0.25);
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.dps-recall-checker .dps-recall-submit {
	align-items: center;
	appearance: none;
	background: var(--dps-recall-accent);
	border: 2px solid var(--dps-recall-accent);
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 700;
	gap: 0.55rem;
	justify-content: center;
	line-height: 1.3 !important;
	height: 48px !important;
	min-height: 48px !important;
	min-width: 130px;
	padding: 0.7rem 1.25rem !important;
	transition: background-color 150ms ease, border-color 150ms ease;
}

.dps-recall-checker .dps-recall-submit:hover {
	background: var(--dps-recall-accent-dark);
	border-color: var(--dps-recall-accent-dark);
	color: #fff;
}

.dps-recall-submit:disabled {
	cursor: wait;
	opacity: 0.72;
}

.dps-recall-spinner {
	animation: dps-recall-spin 700ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	border-top-color: #fff;
	display: none;
	height: 1em;
	width: 1em;
}

.dps-recall-form.is-loading .dps-recall-spinner {
	display: inline-block;
}

.dps-recall-result {
	border-left: 5px solid #6d7782;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.55;
	margin-top: 16px;
	padding: 16px 18px;
}

.dps-recall-result[hidden] {
	display: none;
}

.dps-recall-result--pending {
	background: #fff4e5;
	border-left-color: #b45309;
	color: #61300b;
}

.dps-recall-result--completed {
	background: #eaf7ee;
	border-left-color: #237a3b;
	color: #165328;
}

.dps-recall-result--not_found {
	background: #f1f4f7;
	border-left-color: #5d6874;
	color: #343c45;
}

.dps-recall-result--invalid,
.dps-recall-result--error {
	background: #fdecec;
	border-left-color: #b42318;
	color: #721c16;
}

.dps-recall-honeypot {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

@keyframes dps-recall-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
	.dps-recall-controls {
		align-items: stretch;
		flex-direction: column;
	}

	.dps-recall-submit {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dps-recall-spinner {
		animation-duration: 1.5s;
	}

	.dps-recall-submit {
		transition: none;
	}
}
