.tvf-lookup-box {
	max-width: 640px;
	margin: 24px auto;
	padding: 18px 16px 16px;
	border: 1px solid #202020;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tvf-lookup-title {
	margin: 0;
	font-size: 36px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
}

.tvf-lookup-icon {
	display: inline-block;
	margin-right: 8px;
	font-size: 32px;
	font-weight: 700;
	vertical-align: middle;
}

.tvf-lookup-divider {
	margin: 14px 0 18px;
	border: 0;
	border-top: 1px solid #e5e5e5;
}

.tvf-lookup-form p,
.tvf-lookup-form label {
	margin: 0;
}

.tvf-lookup-label {
	font-size: 30px;
	font-weight: 500;
	color: #1f1f1f;
	margin-bottom: 10px;
}

.tvf-lookup-radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 30px;
	margin-bottom: 12px;
}

.tvf-lookup-radio input {
	width: 18px;
	height: 18px;
}

.tvf-lookup-input-label {
	display: block;
	font-size: 28px;
	font-weight: 500;
	color: #111;
	margin-bottom: 8px;
}

.tvf-lookup-form input[type="text"] {
	display: block;
	width: 100%;
	height: 48px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	padding: 0 12px;
	font-size: 26px;
	line-height: 46px;
	box-sizing: border-box;
}

.tvf-lookup-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 14px;
}

.tvf-lookup-note {
	margin: 0;
	font-size: 26px;
	color: #222;
	line-height: 1.35;
}

.tvf-lookup-form button {
	height: 50px;
	padding: 0 22px;
	border: 0;
	border-radius: 4px;
	background: #ff0d0d;
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.tvf-lookup-form button:hover {
	background: #e30000;
}

.tvf-lookup-message {
	margin-top: 14px;
	padding: 10px 12px;
	border-radius: 4px;
	font-size: 24px;
}

.tvf-lookup-error {
	background: #fff3f2;
	color: #b00020;
	border: 1px solid #f3c5c2;
}

.tvf-lookup-results {
	margin-top: 18px;
	padding-top: 12px;
	border-top: 1px dashed #ccc;
}

.tvf-lookup-results h3 {
	margin: 0 0 10px;
	font-size: 30px;
}

.tvf-lookup-results ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tvf-lookup-results li {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	padding: 10px 0;
	border-bottom: 1px solid #efefef;
	font-size: 24px;
}

@media (max-width: 768px) {
	.tvf-lookup-box {
		margin: 14px 8px;
		padding: 14px 12px;
	}

	.tvf-lookup-title {
		font-size: 28px;
	}

	.tvf-lookup-icon {
		font-size: 24px;
	}

	.tvf-lookup-label,
	.tvf-lookup-radio,
	.tvf-lookup-input-label,
	.tvf-lookup-form input[type="text"],
	.tvf-lookup-note {
		font-size: 20px;
	}

	.tvf-lookup-form button {
		font-size: 20px;
		height: 42px;
		padding: 0 14px;
	}

	.tvf-lookup-message,
	.tvf-lookup-results h3,
	.tvf-lookup-results li {
		font-size: 18px;
	}
}

