.sh-vc {
	--sh-vc-accent: #2563eb;
	--sh-vc-accent-dark: #1d4ed8;
	--sh-vc-bg: #ffffff;
	--sh-vc-border: #e2e8f0;
	--sh-vc-text: #0f172a;
	--sh-vc-muted: #64748b;
	max-width: 560px;
	margin: 0 auto;
	padding: 28px;
	background: var(--sh-vc-bg);
	border: 1px solid var(--sh-vc-border);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	color: var(--sh-vc-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
}

.sh-vc * {
	box-sizing: border-box;
}

.sh-vc-instructions {
	margin-bottom: 22px;
	padding: 16px 18px;
	background: #f8fafc;
	border: 1px solid var(--sh-vc-border);
	border-radius: 12px;
}

.sh-vc-instructions-body :first-child {
	margin-top: 0;
}

.sh-vc-instructions-body :last-child {
	margin-bottom: 0;
}

.sh-vc-instructions-body h3 {
	margin: 0 0 10px;
	font-size: 16px;
}

.sh-vc-instructions-body ol,
.sh-vc-instructions-body ul {
	margin: 0 0 10px;
	padding-left: 20px;
}

.sh-vc-instructions-body li {
	margin-bottom: 6px;
	font-size: 13.5px;
}

.sh-vc-instructions-body p {
	font-size: 13px;
	color: var(--sh-vc-muted);
}

.sh-vc-field {
	margin-bottom: 18px;
}

.sh-vc-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}

.sh-vc-row {
	display: flex;
	gap: 16px;
}

.sh-vc-row .sh-vc-field {
	flex: 1;
}

.sh-vc input[type="file"],
.sh-vc select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--sh-vc-border);
	border-radius: 10px;
	font-size: 14px;
	background: #f8fafc;
	color: var(--sh-vc-text);
}

.sh-vc select:focus,
.sh-vc input:focus {
	outline: none;
	border-color: var(--sh-vc-accent);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.sh-vc-hint {
	margin: 6px 0 0;
	font-size: 12.5px;
	color: var(--sh-vc-muted);
}

.sh-vc-muted {
	color: var(--sh-vc-muted);
}

.sh-vc-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 12px 18px;
	border: 1px solid var(--sh-vc-border);
	border-radius: 10px;
	background: #f1f5f9;
	color: var(--sh-vc-text);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.05s ease;
}

.sh-vc-btn:hover {
	background: #e2e8f0;
}

.sh-vc-btn:active {
	transform: translateY(1px);
}

.sh-vc-btn--primary {
	background: var(--sh-vc-accent);
	border-color: var(--sh-vc-accent);
	color: #fff;
}

.sh-vc-btn--cancel {
	margin-top: 12px;
	background: #fff;
	border-color: #fecaca;
	color: #b91c1c;
}

.sh-vc-btn--cancel:hover {
	background: #fef2f2;
}

.sh-vc-estimate {
	margin: 0 0 16px;
	padding: 10px 12px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 10px;
	font-size: 13px;
	color: #1e40af;
}

.sh-vc-btn--primary:hover {
	background: var(--sh-vc-accent-dark);
}

.sh-vc-btn[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.sh-vc-progress {
	width: 100%;
	height: 14px;
	background: #e2e8f0;
	border-radius: 999px;
	overflow: hidden;
	margin: 10px 0;
}

.sh-vc-bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--sh-vc-accent), #38bdf8);
	border-radius: 999px;
	transition: width 0.4s ease;
}

.sh-vc-bar.is-indeterminate {
	width: 35% !important;
	animation: sh-vc-slide 1.2s ease-in-out infinite;
}

@keyframes sh-vc-slide {
	0% { margin-left: -35%; }
	100% { margin-left: 100%; }
}

.sh-vc-status {
	font-size: 14px;
	margin: 8px 0 4px;
}

.sh-vc-status [data-pct] {
	color: var(--sh-vc-muted);
}

.sh-vc-notice {
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 14px;
	margin-bottom: 14px;
	border: 1px solid transparent;
}

.sh-vc-notice--info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.sh-vc-notice--ok   { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.sh-vc-notice--warn { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.sh-vc-notice--err  { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

.sh-vc-inline-err {
	margin: 8px 0 0;
	font-size: 13px;
	color: #991b1b;
	font-weight: 600;
}

.sh-vc-files {
	margin-top: 18px;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid var(--sh-vc-border);
	border-radius: 10px;
}

.sh-vc-files-head {
	font-size: 12.5px;
	color: var(--sh-vc-muted);
	margin-bottom: 8px;
}

.sh-vc-files-head code {
	background: #e2e8f0;
	padding: 2px 6px;
	border-radius: 6px;
	font-size: 12px;
}

.sh-vc-files-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sh-vc-files-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 6px 0;
	font-size: 13px;
	border-top: 1px solid var(--sh-vc-border);
}

.sh-vc-files-list li:first-child {
	border-top: none;
}

.sh-vc-file-name {
	word-break: break-all;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12.5px;
}

.sh-vc-tag {
	flex: none;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 999px;
	white-space: nowrap;
}

.sh-vc-tag--stored     { background: #eff6ff; color: #1e40af; }
.sh-vc-tag--processing { background: #fffbeb; color: #92400e; }
.sh-vc-tag--ready      { background: #ecfdf5; color: #065f46; }
.sh-vc-tag--removed    { background: #f1f5f9; color: #475569; }

.sh-vc-foot {
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px dashed var(--sh-vc-border);
	font-size: 12px;
	color: var(--sh-vc-muted);
}

.sh-vc-foot code {
	display: inline-block;
	margin-top: 4px;
	padding: 4px 8px;
	background: #f1f5f9;
	border-radius: 6px;
	font-size: 11.5px;
	word-break: break-all;
}

.sh-vc-lock {
	margin-right: 4px;
}
