.tvc-ns-w {
	max-width: 720px; margin: 0 auto; font-family: inherit;
	--tvc-primary: #0c447c;
	--tvc-primary-dark: #093461;
	--tvc-text: #222222;
	--tvc-radius: 8px;
	--tvc-success-bg: #eaf3de;
	--tvc-success-border: #c0dd97;
	--tvc-warning-bg: #fdf3e7;
	--tvc-warning-border: #f0c987;
	--tvc-danger-bg: #fbeaea;
	--tvc-danger-border: #f0b3b3;
	--tvc-accent-bg: #eeedfe;
	--tvc-accent-border: #cecbf6;
	color: var(--tvc-text);
}
.tvc-ns-form { display: flex; flex-direction: column; gap: 14px; padding: 20px; border: 1px solid #ddd; border-radius: var(--tvc-radius); background: #fafafa; }
.tvc-ns-field { display: flex; flex-direction: column; gap: 4px; }
.tvc-ns-field label { font-weight: 600; font-size: 14px; }
.tvc-ns-field input, .tvc-ns-field select { padding: 10px 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; }
.tvc-ns-required { color: #b32d2d; }
.tvc-ns-desc-count { align-self: flex-end; font-size: 11px; color: #999; }
.tvc-ns-entity-hint { min-height: 14px; }
.tvc-ns-hint-line { font-size: 12px; color: #777; margin-top: 2px; }
.tvc-ns-hint-caution { font-size: 12px; color: #8a5a00; background: #fdf3e7; border: 1px solid #f0c987; border-radius: 6px; padding: 6px 8px; margin-top: 4px; line-height: 1.4; }
.tvc-ns-field input:focus, .tvc-ns-field select:focus { outline: none; border-color: var(--tvc-primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--tvc-primary) 25%, transparent); }
.tvc-ns-submit { padding: 12px 18px; background: var(--tvc-primary); color: #fff; border: none; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.15s ease; }
.tvc-ns-submit:hover { background: var(--tvc-primary-dark); }
.tvc-ns-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.tvc-ns-results { margin-top: 20px; }
.tvc-ns-block { margin-bottom: 18px; padding: 16px; border-radius: var(--tvc-radius); }
.tvc-ns-block h3 { margin-top: 0; font-size: 16px; }

.tvc-ns-warning { background: var(--tvc-warning-bg); border: 1px solid var(--tvc-warning-border); }
.tvc-ns-conflicts { background: var(--tvc-danger-bg); border: 1px solid var(--tvc-danger-border); }
.tvc-ns-clear { background: var(--tvc-success-bg); border: 1px solid var(--tvc-success-border); padding: 14px 16px; border-radius: var(--tvc-radius); }
.tvc-ns-suggestions { background: var(--tvc-accent-bg); border: 1px solid var(--tvc-accent-border); }

.tvc-ns-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tvc-ns-table th, .tvc-ns-table td { text-align: left; padding: 6px 8px; border-bottom: 1px solid rgba(0,0,0,0.08); }

.tvc-ns-badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 12px; font-weight: 600; }
.tvc-ns-badge-exact { background: #f6c8c8; color: #7a1f1f; }
.tvc-ns-badge-similar { background: #f0dcae; color: #6b4c07; }

.tvc-ns-suggestion-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tvc-ns-suggestion-list li { background: #fff; padding: 8px 12px; border-radius: 6px; border: 1px solid var(--tvc-accent-border); font-weight: 600; }

.tvc-ns-disclaimer { font-size: 12px; color: #666; margin-top: 10px; margin-bottom: 0; }
.tvc-ns-error { background: var(--tvc-danger-bg); border: 1px solid var(--tvc-danger-border); padding: 14px 16px; border-radius: var(--tvc-radius); }

.tvc-ns-cta {
	display: block; text-align: center; text-decoration: none;
	margin-top: 4px; padding: 14px 18px; border-radius: var(--tvc-radius);
	background: var(--tvc-primary); color: #fff; font-size: 15px; font-weight: 700;
	transition: background 0.15s ease;
}
.tvc-ns-cta:hover { background: var(--tvc-primary-dark); color: #fff; }

/* Loading state */
.tvc-ns-loading { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: var(--tvc-radius); background: #f4f4f8; border: 1px solid #e2e2ee; }

.tvc-ns-loading-bulb { position: relative; width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.tvc-ns-bulb-glow {
	position: absolute; inset: 0; border-radius: 50%;
	background: radial-gradient(circle, color-mix(in srgb, var(--tvc-primary) 35%, transparent) 0%, transparent 70%);
	animation: tvc-ns-glow 1.6s ease-in-out infinite;
}
.tvc-ns-bulb-emoji { font-size: 22px; line-height: 1; animation: tvc-ns-bulb-pulse 1.6s ease-in-out infinite; }
@keyframes tvc-ns-bulb-pulse { 0%, 100% { transform: scale(0.9); } 50% { transform: scale(1.08); } }
@keyframes tvc-ns-glow { 0%, 100% { opacity: 0.35; transform: scale(0.85); } 50% { opacity: 0.9; transform: scale(1.15); } }

.tvc-ns-loading-body { flex: 1; min-width: 0; }
.tvc-ns-loading-text { font-size: 14px; color: #444; transition: opacity 0.25s ease; display: flex; align-items: baseline; }
.tvc-ns-dots { display: inline-flex; margin-left: 2px; }
.tvc-ns-dots span { animation: tvc-ns-dot-bounce 1.2s infinite; opacity: 0.3; }
.tvc-ns-dots span:nth-child(2) { animation-delay: 0.15s; }
.tvc-ns-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes tvc-ns-dot-bounce { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }

.tvc-ns-loading-bar { margin-top: 8px; height: 4px; border-radius: 2px; background: #e2e2ee; overflow: hidden; }
.tvc-ns-loading-bar-fill { height: 100%; width: 0; border-radius: 2px; background: var(--tvc-primary); }

.tvc-ns-loading-countdown { margin-top: 6px; font-size: 12px; color: #888; }
.tvc-ns-loading-countdown strong { color: var(--tvc-primary); font-variant-numeric: tabular-nums; }

.tvc-ns-fact { margin-top: 10px; padding-top: 10px; border-top: 1px dashed #dcdce8; font-size: 13px; color: #555; }
.tvc-ns-fact-label { font-weight: 600; color: var(--tvc-primary); }
.tvc-ns-fact-text { transition: opacity 0.25s ease; }

@media (max-width: 480px) {
	.tvc-ns-suggestion-list { grid-template-columns: 1fr; }
}
