.vxd-tchv-lookup {
	--vxd-primary: #0f5c4d;
	--vxd-primary-dark: #0b463b;
	--vxd-border: #d9e4dd;
	--vxd-bg: linear-gradient(135deg, #f7fbf9 0%, #eef7f2 100%);
	--vxd-text: #17312b;
	--vxd-muted: #5a726b;
	--vxd-success-bg: #ecfdf3;
	--vxd-success-text: #05603a;
	--vxd-warning-bg: #fff7ed;
	--vxd-warning-text: #9a3412;
	color: var(--vxd-text);
	font-family: "Segoe UI", system-ui, sans-serif;
}

.vxd-tchv-lookup__card {
	background: var(--vxd-bg);
	border: 1px solid var(--vxd-border);
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
	padding: 24px;
}

.vxd-tchv-lookup__title {
	font-size: 1.75rem;
	line-height: 1.2;
	margin: 0 0 18px;
}

.vxd-tchv-lookup__fields {
	display: grid;
	gap: 16px;
	grid-template-columns: 1.1fr 2fr auto;
	align-items: end;
}

.vxd-tchv-lookup__fields.single-method {
	grid-template-columns: 1.3fr 2fr auto;
}

.vxd-tchv-field label {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.vxd-tchv-field input,
.vxd-tchv-field select,
.vxd-tchv-field__static {
	background: #fff;
	border: 1px solid #c6d6ce;
	border-radius: 12px;
	box-sizing: border-box;
	font-size: 1rem;
	min-height: 52px;
	padding: 14px 16px;
	width: 100%;
}

.vxd-tchv-field__static {
	display: flex;
	align-items: center;
}

.vxd-tchv-button {
	background: var(--vxd-primary);
	border: 0;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	min-height: 52px;
	padding: 0 22px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.vxd-tchv-button:hover,
.vxd-tchv-button:focus {
	background: var(--vxd-primary-dark);
	transform: translateY(-1px);
}

.vxd-tchv-button.is-loading {
	opacity: 0.8;
	pointer-events: none;
}

.vxd-tchv-lookup__meta {
	color: var(--vxd-muted);
	font-size: 0.92rem;
	margin-top: 14px;
}

.vxd-tchv-result {
	margin-top: 24px;
}

.vxd-tchv-result__header h3 {
	font-size: 1.35rem;
	margin: 0 0 6px;
}

.vxd-tchv-result__header p {
	color: var(--vxd-muted);
	margin: 0 0 16px;
}

.vxd-tchv-alert {
	border-radius: 12px;
	font-weight: 600;
	margin-bottom: 18px;
	padding: 14px 16px;
}

.vxd-tchv-alert--success {
	background: var(--vxd-success-bg);
	color: var(--vxd-success-text);
}

.vxd-tchv-alert--warning {
	background: var(--vxd-warning-bg);
	color: var(--vxd-warning-text);
}

.vxd-tchv-table-wrap {
	overflow-x: auto;
}

.vxd-tchv-table {
	background: #fff;
	border-collapse: collapse;
	border-radius: 12px;
	min-width: 100%;
	overflow: hidden;
}

.vxd-tchv-table th,
.vxd-tchv-table td {
	border-bottom: 1px solid #e4ece7;
	padding: 14px 16px;
	text-align: left;
}

.vxd-tchv-table thead th {
	background: #eff7f2;
	font-size: 0.94rem;
}

.vxd-tchv-result-cards {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.vxd-tchv-result-card {
	background: #fff;
	border: 1px solid #dfe9e3;
	border-radius: 14px;
	padding: 18px;
}

.vxd-tchv-result-card__row + .vxd-tchv-result-card__row {
	border-top: 1px dashed #e3ece7;
	margin-top: 12px;
	padding-top: 12px;
}

.vxd-tchv-result-card__label {
	color: var(--vxd-muted);
	display: block;
	font-size: 0.88rem;
	margin-bottom: 4px;
}

.vxd-tchv-result-card__value {
	display: block;
	font-weight: 700;
}

@media (max-width: 768px) {
	.vxd-tchv-lookup__card {
		padding: 18px;
	}

	.vxd-tchv-lookup__fields,
	.vxd-tchv-lookup__fields.single-method {
		grid-template-columns: 1fr;
	}

	.vxd-tchv-button {
		width: 100%;
	}
}
