:root {
	--npwc-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.npwc-dashboard-admin-page #wpcontent {
	padding-left: 0;
	background: #0f1119;
}

body.npwc-dashboard-admin-page #wpbody-content {
	padding-bottom: 0;
	background: #0f1119;
	min-height: calc(100vh - 32px);
}

body.npwc-dashboard-admin-page #wpwrap,
body.npwc-dashboard-admin-page #wpbody,
body.npwc-dashboard-admin-page #wpfooter {
	background: #0f1119;
}

/* Light mode: match WP chrome + footer to dashboard so no dark strip at bottom */
body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #wpcontent,
body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #wpbody-content,
body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #wpwrap,
body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #wpbody,
body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #wpfooter,
body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #npwc-dashboard-root {
	background: #eef2f7 !important;
}

body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #wpbody-content {
	min-height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
	body.npwc-dashboard-admin-page.npwc-dashboard-theme-light #wpbody-content {
		min-height: calc(100vh - 46px);
	}
}

body.npwc-dashboard-admin-page #wpbody-content > .notice,
body.npwc-dashboard-admin-page #wpbody-content > .update-nag {
	margin: 12px 20px 0;
}

#npwc-dashboard-root {
	min-height: calc(100vh - 32px);
	background: transparent;
}

@media screen and (max-width: 782px) {
	body.npwc-dashboard-admin-page #wpbody-content {
		min-height: calc(100vh - 46px);
	}

	#npwc-dashboard-root,
	.npwc-dashboard {
		min-height: calc(100vh - 46px);
	}
}

.npwc-dashboard {
	font-family: var(--npwc-font);
	padding: 0 0 32px;
	border-radius: 0;
	min-height: calc(100vh - 32px);
	background: transparent;
}

.npwc-theme-dark {
	--npwc-bg: #0a1024;
	--npwc-panel: #151723;
	--npwc-text: #f8faff;
	--npwc-muted: #9b9fb0;
	--npwc-border: #2d3f6e;
	--npwc-chart-line: rgba(148, 163, 184, 0.16);
	background: #0f1119;
	color: var(--npwc-text);
}

.npwc-theme-light {
	--npwc-bg: #eef2f7;
	--npwc-panel: #ffffff;
	--npwc-text: #111827;
	--npwc-muted: #6b7280;
	--npwc-border: #d9dee7;
	--npwc-chart-line: rgba(100, 116, 139, 0.22);
	background: #eef2f7;
	color: var(--npwc-text);
}

.npwc-api-banner {
	position: relative;
	margin: 15px 80px 0px;
	padding: 16px 48px 16px 18px;
	border-radius: 12px;
	border: 1px solid rgba(251, 191, 36, 0.45);
	background: linear-gradient(135deg, rgba(120, 53, 15, 0.35), rgba(30, 27, 22, 0.92));
	color: #fef3c7;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.npwc-api-banner-dismiss {
	position: absolute;
	top: 0px;
	right: 9px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: transparent !important;
	color: #fef3c7;
	font-size: 22px;
	line-height: 1;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.15s ease, opacity 0.15s ease;
}

.npwc-api-banner-dismiss:hover,
.npwc-api-banner-dismiss:focus {
	background: transparent !important;
	color: #fff;
	opacity: 0.95;
	outline: none;
}

.npwc-theme-light .npwc-api-banner-dismiss {
	background: transparent !important;
	color: #78350f;
}

.npwc-theme-light .npwc-api-banner-dismiss:hover,
.npwc-theme-light .npwc-api-banner-dismiss:focus {
	background: transparent !important;
	color: #451a03;
}

.npwc-api-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.npwc-theme-light .npwc-api-banner {
	border: 1px solid rgba(217, 119, 6, 0.45);
	background: linear-gradient(135deg, #fffbeb, #fef3c7);
	color: #78350f;
	box-shadow: 0 4px 16px rgba(180, 83, 9, 0.12);
}

.npwc-api-banner-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
	font-size: 13px;
	line-height: 1.45;
}

.npwc-api-banner-text strong {
	font-size: 14px;
	font-weight: 600;
}

.npwc-api-banner-text span {
	opacity: 0.95;
}

.npwc-api-banner-docs {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.35;
	opacity: 1;
}

.npwc-api-banner-docs a {
	color: #fbbf24;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 600;
}

.npwc-api-banner-docs a:hover,
.npwc-api-banner-docs a:focus {
	color: #fcd34d;
	outline: none;
}

.npwc-theme-light .npwc-api-banner-docs a {
	color: #d97706;
}

.npwc-theme-light .npwc-api-banner-docs a:hover,
.npwc-theme-light .npwc-api-banner-docs a:focus {
	color: #b45309;
}

.npwc-api-banner-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 34px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	white-space: nowrap;
	background: #f59e0b;
	color: #1c1917 !important;
	border: 1px solid rgba(180, 83, 9, 0.35);
	margin: 9px 0px 2px;
}

.npwc-api-banner-btn:hover,
.npwc-api-banner-btn:focus {
	filter: brightness(1.05);
	color: #1c1917 !important;
}

.npwc-theme-light .npwc-api-banner-btn {
	background: #ea580c;
	color: #fff !important;
	border-color: rgba(194, 65, 12, 0.5);
}

.npwc-theme-light .npwc-api-banner-btn:hover,
.npwc-theme-light .npwc-api-banner-btn:focus {
	color: #fff !important;
}

.npwc-header,
.npwc-brand,
.npwc-grid,
.npwc-legend-item,
.npwc-coin-row,
.npwc-coin-left {
	display: flex;
	align-items: center;
}

.npwc-header {
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 0;
	padding: 15px 80px;
	background: rgba(18, 26, 53, 0.92);
	border-bottom: 1px solid var(--npwc-border);
	position: sticky;
	z-index: 100;
	top: 32px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 782px) {
	.npwc-header {
		top: 46px;
	}
}

.npwc-theme-light .npwc-header {
	background: linear-gradient(45deg, #ffffff, transparent);
	border-bottom: 1px solid #d9dee7;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.npwc-theme-dark .npwc-header {
	background: #0d1329;
}

.npwc-brand {
	gap: 12px;
}

.npwc-brand img {
	width: 38px;
	height: 38px;
	border-radius: 12px;
}

.npwc-brand strong {
	display: block;
	margin: 0;
	font-size: 15px;
	color: #ffffff;
	letter-spacing: 0.01em;
}

.npwc-theme-light .npwc-brand strong {
	color: #111827;
}

.npwc-brand p {
	margin: 0;
	color: var(--npwc-muted);
	font-size: 12px;
}

.npwc-theme-toggle-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: #fff;
	flex-shrink: 0;
}

.npwc-theme-light .npwc-theme-toggle-wrap {
	color: #111827;
}

.npwc-theme-toggle {
	width: 44px;
	height: 24px;
	background: #7c3aed;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	padding: 2px;
	cursor: pointer;
	position: relative;
	transition: background 0.2s ease;
}

.npwc-theme-toggle.is-light {
	background: #cbd5e1;
}

.npwc-theme-knob {
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	transform: translateX(0);
	transition: transform 0.2s ease;
}

.npwc-theme-toggle.is-light .npwc-theme-knob {
	transform: translateX(20px);
}

.npwc-hero {
	padding: 16px 80px 0;
	margin-bottom: 10px;
}

.npwc-hero h1 {
	margin: 0;
	padding: 12px 0 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.npwc-theme-light .npwc-hero h1 {
	color: #111827;
	text-shadow: none;
}

.npwc-hero p {
	margin: 4px 0 20px;
	font-size: 13px;
	color: var(--npwc-muted);
}

.npwc-cards {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 12px;
	padding: 0 80px;
	align-items: stretch;
	box-sizing: border-box;
}

.npwc-card,
.npwc-panel {
	background: var(--npwc-panel);
	border: none;
	border-radius: 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.npwc-theme-light .npwc-card,
.npwc-theme-light .npwc-panel {
	border: 1px solid #d9dee7;
	box-shadow: none;
}

.npwc-card {
	padding: 25px 18px 25px 18px;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.npwc-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.npwc-card-icon {
	width: 26px;
	height: 26px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
}

.npwc-card-icon svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.npwc-icon-purple {
	color: #b36bff;
	background: rgba(145, 76, 255, 0.12);
	border-color: rgba(145, 76, 255, 0.35);
}

.npwc-icon-green {
	color: #33d4ab;
	background: rgba(16, 185, 129, 0.12);
	border-color: rgba(16, 185, 129, 0.35);
}

.npwc-icon-red {
	color: #fb7185;
	background: rgba(244, 63, 94, 0.12);
	border-color: rgba(244, 63, 94, 0.35);
}

.npwc-icon-yellow {
	color: #facc15;
	background: rgba(234, 179, 8, 0.12);
	border-color: rgba(234, 179, 8, 0.35);
}

.npwc-icon-violet {
	color: #c084fc;
	background: rgba(168, 85, 247, 0.12);
	border-color: rgba(168, 85, 247, 0.35);
}

.npwc-card-trend {
	font-size: 11px;
	font-weight: 600;
}

.npwc-trend-purple,
.npwc-trend-green,
.npwc-trend-violet {
	color: #25d091;
}

.npwc-trend-red {
	color: #fb7185;
}

.npwc-trend-yellow {
	color: #93c5fd;
}

.npwc-card-label {
	font-size: 11px;
	color: var(--npwc-muted);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	font-weight: 600;
}

.npwc-card-value {
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	margin: 8px 0 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.npwc-theme-light .npwc-card-value {
	color: #111827;
}

.npwc-card-sub {
	font-size: 12px;
	color: var(--npwc-muted);
}

.npwc-grid {
	gap: 14px;
	margin-bottom: 14px;
	align-items: stretch;
	padding: 0 80px;
}

.npwc-grid > * {
	flex: 1;
}

.npwc-grid.npwc-grid--coins-tx > *:first-child {
	flex: 1 1 0;
	min-width: 0;
}

.npwc-grid.npwc-grid--coins-tx > *:last-child {
	flex: 2 1 0;
	min-width: 0;
}

.npwc-grid.npwc-grid--coins-tx .npwc-pro-lock {
	width: 100%;
	min-width: 0;
}

.npwc-panel {
	padding: 14px;
}

.npwc-section-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.npwc-section-title p {
	margin: 2px 0 0;
	font-size: 12px;
	color: var(--npwc-muted);
}

.npwc-section-icon {
	width: 26px;
	height: 26px;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #a855f7;
	background: rgba(168, 85, 247, 0.15);
}

.npwc-theme-light .npwc-section-icon {
	color: #a855f7;
	background: #f3e8ff;
}

.npwc-section-icon svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.npwc-panel-lg {
	flex: 2;
}

.npwc-panel-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
	color: #f2f5ff;
}

.npwc-theme-light .npwc-panel-title {
	color: #111827;
}

.npwc-converter {
	padding: 16px;
	background: var(--npwc-panel);
}

.npwc-theme-light .npwc-converter {
	background: #ffffff;
	border: 1px solid #d9dee7;
}

.npwc-converter-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 14px;
}

.npwc-converter-badge {
	color: #25d091;
	font-size: 11px;
	font-weight: 600;
	background: rgba(34, 211, 170, 0.18);
	border: 1px solid rgba(34, 211, 170, 0.35);
	padding: 5px 10px;
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgba(34, 211, 170, 0.08) inset;
}

.npwc-converter-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 14px;
	align-items: center;
}

.npwc-converter-box {
	background: rgba(8, 12, 28, 0.92);
	border-radius: 12px;
	padding: 14px;
}

.npwc-theme-light .npwc-converter-box {
	background: #f9fafb;
	border: 1px solid #d9dee7;
}

.npwc-converter-box label {
	display: block;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--npwc-muted);
	margin-bottom: 8px;
}

.npwc-converter-row {
	display: flex;
	gap: 8px;
	align-items: center;
	padding-top: 2px;
}

.npwc-converter-box input,
.npwc-converter-box select {
	background: transparent;
	border: none;
	color: #fff;
	font-family: var(--npwc-font);
}

.npwc-theme-light .npwc-converter-box input,
.npwc-theme-light .npwc-converter-box select {
	color: #111827;
}

.npwc-converter-box input {
	flex: 1;
	font-size: 20px;
	font-weight: 700;
	outline: none;
	letter-spacing: 0.01em;
}

.npwc-converter-box select {
	font-size: 13px;
	font-weight: 600;
	background: rgba(28, 36, 62, 0.92);
	border: 1px solid rgba(90, 110, 180, 0.5);
	border-radius: 8px;
	padding: 6px 10px;
	color: #e8eeff;
}

.npwc-theme-light .npwc-converter-box select {
	background: #ffffff;
	border-color: #d9dee7;
	color: #111827;
}

.npwc-converter-swap {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	background: linear-gradient(180deg, #b455ff 0%, #8b3cff 100%);
	color: #fff;
	font-size: 17px;
	box-shadow: 0 8px 22px rgba(144, 61, 255, 0.38);
}

.npwc-converter-rate {
	margin: 10px 2px 0;
	font-size: 12px;
	color: var(--npwc-muted);
}

.npwc-line-chart {
	width: 100%;
	height: 280px;
	display: block;
}

.npwc-y-label {
	font-size: 11px;
	fill: #8ea1d1;
}

.npwc-theme-light .npwc-y-label {
	fill: #6b7280;
}

.npwc-axis {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	font-size: 12px;
	color: var(--npwc-muted);
	padding-left: 52px;
	padding-right: 14px;
}

.npwc-donut-wrap {
	display: flex;
	justify-content: center;
}

.npwc-donut {
	width: 230px;
	height: 230px;
}

.npwc-donut-number {
	font-size: 22px;
	font-weight: 700;
	fill: var(--npwc-text);
}

.npwc-donut-label {
	font-size: 12px;
	fill: var(--npwc-muted);
}

.npwc-legend {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.npwc-legend-item {
	gap: 8px;
	padding: 8px 10px;
	border-radius: 10px;
}

.npwc-legend-item span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.npwc-legend-item strong {
	text-transform: capitalize;
}

.npwc-legend-item em {
	margin-left: auto;
	font-style: normal;
	color: var(--npwc-muted);
}

.npwc-bars-wrap {
	display: flex;
	align-items: stretch;
	gap: 10px;
}

.npwc-bars-y {
	width: 36px;
	flex-shrink: 0;
	height: 172px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	padding: 2px 0 0;
	box-sizing: border-box;
}

.npwc-bars-y span {
	font-size: 11px;
	color: var(--npwc-muted);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.npwc-bars-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.npwc-bars-plot {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	gap: 14px;
	height: 172px;
	padding: 2px 6px 0;
	box-sizing: border-box;
}

.npwc-bars-plot::before {
	content: '';
	position: absolute;
	inset: 2px 6px 0;
	border-radius: 10px;
	pointer-events: none;
	z-index: 0;
	background: repeating-linear-gradient(
		to top,
		transparent 0,
		transparent calc(25% - 1px),
		var(--npwc-chart-line) calc(25% - 1px),
		var(--npwc-chart-line) 25%
	);
}

.npwc-bar-slot {
	position: relative;
	z-index: 1;
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}

.npwc-bar {
	width: 100%;
	max-width: 40px;
	min-height: 6px;
	border-radius: 999px 999px 5px 5px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.npwc-bars-xlabels {
	display: flex;
	align-items: flex-start;
	justify-content: stretch;
	gap: 14px;
	padding: 10px 6px 0;
	box-sizing: border-box;
}

.npwc-bars-xlabels .npwc-bar-xlabel {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
	font-size: 12px;
	color: var(--npwc-muted);
	font-weight: 500;
	font-variant-numeric: tabular-nums;
}

.npwc-coin-list {
	display: grid;
	gap: 8px;
}

.npwc-coin-row {
	justify-content: space-between;
	padding: 10px 2px;
	border-bottom: 1px solid rgba(68, 90, 151, 0.25);
}

.npwc-coin-left {
	gap: 8px;
}

.npwc-coin-logo,
.npwc-coin-badge {
	width: 24px;
	height: 24px;
	border-radius: 50%;
}

.npwc-coin-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
}

.npwc-coin-text strong,
.npwc-coin-title {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	line-height: 1.25;
	letter-spacing: 0.01em;
}

.npwc-theme-light .npwc-coin-text strong,
.npwc-theme-light .npwc-coin-title {
	color: #111827;
}

.npwc-coin-text small {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	color: var(--npwc-muted);
}

.npwc-top-coins-panel {
	padding-bottom: 4px;
}

.npwc-transactions-panel {
	padding-bottom: 6px;
}

.npwc-transactions-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px 16px;
	margin-bottom: 4px;
}

.npwc-transactions-head .npwc-section-title {
	flex: 1 1 220px;
	min-width: 0;
}

.npwc-transactions-toolbar {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	margin-top: 2px;
}

.npwc-tx-filter {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	padding: 7px 28px 7px 10px;
	border-radius: 10px;
	border: 1px solid rgba(68, 90, 151, 0.55);
	background: rgba(16, 23, 48, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239b9fb0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 8px center;
	color: #e8eeff;
	font-size: 12px;
	font-weight: 500;
	font-family: var(--npwc-font);
	cursor: not-allowed;
	opacity: 0.95;
}

.npwc-theme-light .npwc-tx-filter {
	background-color: #fff;
	border-color: #d9dee7;
	color: #111827;
}

.npwc-tx-view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 10px;
	background: linear-gradient(135deg, #7c3aed, #a855f7);
	color: #fff !important;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
	white-space: nowrap;
}

.npwc-tx-view-all:hover,
.npwc-tx-view-all:focus {
	filter: brightness(1.06);
}

.npwc-table-wrap {
	overflow-x: auto;
}

.npwc-table {
	width: 100%;
	border-collapse: collapse;
}

.npwc-table th,
.npwc-table td {
	padding: 10px;
	border-bottom: 1px solid var(--npwc-border);
	text-align: left;
	font-size: 13px;
}

.npwc-table th {
	color: var(--npwc-muted);
	font-weight: 500;
}

.npwc-table-transactions th {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.07em;
	font-weight: 600;
	padding-top: 12px;
	padding-bottom: 12px;
}

.npwc-th-view {
	width: 1%;
	white-space: nowrap;
}

.npwc-td-order {
	font-weight: 600;
	color: var(--npwc-text);
}

.npwc-td-muted {
	color: var(--npwc-muted);
	font-size: 13px;
}

.npwc-td-amount {
	font-weight: 600;
	color: var(--npwc-text);
}

.npwc-coin-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--npwc-text);
}

.npwc-coin-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.npwc-view-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #a8b8e6 !important;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none !important;
}

.npwc-view-link:hover,
.npwc-view-link:focus {
	color: #dbe4ff !important;
}

.npwc-view-eye {
	flex-shrink: 0;
	opacity: 0.9;
}

.npwc-theme-light .npwc-view-link {
	color: #4b5563 !important;
}

.npwc-theme-light .npwc-view-link:hover,
.npwc-theme-light .npwc-view-link:focus {
	color: #111827 !important;
}

.npwc-table a {
	color: #c9d7ff;
	text-decoration: none;
}

.npwc-status {
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 12px;
}

.npwc-status-finished {
	color: #16c784;
	background: rgba(22, 199, 132, 0.15);
}

.npwc-status-failed {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.15);
}

.npwc-status-refunded {
	color: #fb923c;
	background: rgba(251, 146, 60, 0.18);
	border: 1px solid rgba(251, 146, 60, 0.35);
}

.npwc-status-waiting {
	color: #c4b5fd;
	background: rgba(109, 40, 217, 0.22);
	border: 1px solid rgba(139, 92, 246, 0.4);
}

.npwc-status-processing {
	color: #eab308;
	background: rgba(234, 179, 8, 0.18);
	border: 1px solid rgba(234, 179, 8, 0.35);
}

@media (max-width: 1280px) {
	.npwc-cards {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}

	.npwc-grid {
		flex-direction: column;
	}

	.npwc-grid.npwc-grid--coins-tx > *:first-child,
	.npwc-grid.npwc-grid--coins-tx > *:last-child {
		flex: 1 1 auto;
		width: 100%;
	}

	.npwc-converter-grid {
		grid-template-columns: 1fr;
	}

	.npwc-converter-swap {
		margin: 0 auto;
	}

	.npwc-api-banner {
		margin-left: 16px;
		margin-right: 16px;
	}
}

.npwc-header {
	width: 100%;
	box-sizing: border-box;
}

.npwc-card-wrap {
	display: flex;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.npwc-card-wrap .npwc-pro-lock {
	flex: 1;
	width: 100%;
}

.npwc-pro-lock {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 160px;
}

.npwc-pro-lock--card {
	min-height: 170px;
}

.npwc-pro-lock.npwc-pro-lock--card,
.npwc-pro-lock.npwc-pro-lock--panel {
	overflow: visible;
}

.npwc-pro-lock--converter {
	width: 100%;
}

.npwc-pro-lock-inner {
	filter: blur(2px);
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	opacity: 0.92;
	-webkit-font-smoothing: antialiased;
}

.npwc-pro-lock-hit {
	position: absolute;
	inset: 0;
	z-index: 3;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: inherit;
	cursor: pointer;
	background: transparent;
}

.npwc-pro-lock-hit:hover,
.npwc-pro-lock-hit:focus-visible {
	background: rgba(124, 58, 237, 0.04);
	outline: none;
}

.npwc-pro-lock-hit:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(168, 85, 247, 0.45);
}

.npwc-pro-lock > .pro-badge {
	position: absolute;
	top: 7px;
	right: 7px;
	z-index: 4;
	pointer-events: none;
}

.npwc-pro-lock.npwc-pro-lock--card > .pro-badge,
.npwc-pro-lock.npwc-pro-lock--panel > .pro-badge {
	top: -10px;
	right: -11px;
	z-index: 6;
}

.npwc-pro-lock.npwc-pro-lock--transactions > .pro-badge {
	top: -11px;
}

.npwc-pro-lock .pro-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 7px 11px;
	border-radius: 999px;
	font-family: var(--npwc-font);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #000;
	background: linear-gradient(90deg, rgba(251, 191, 36, 0.9), rgba(249, 115, 22, 0.9));
	box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.3);
	line-height: 1;
}

.npwc-pro-lock .pro-badge svg {
	width: 10px;
	height: 10px;
	flex-shrink: 0;
}

.npwc-converter-swap-btn {
	border: none;
	background: linear-gradient(135deg, #7c3aed, #a855f7);
	color: #fff;
	font-size: 18px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.npwc-converter-swap-btn:hover {
	filter: brightness(1.05);
}

.npwc-converter-badge.is-loading {
	opacity: 0.85;
}

.npwc-converter-error {
	color: #f87171;
	font-size: 13px;
	margin: 8px 0 0;
}

