.nspw-box {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 28px 30px 32px;
	box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.nspw-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}
.nspw-logo { max-height: 48px; max-width: 180px; object-fit: contain; }
.nspw-nav { display: flex; gap: 18px; }
.nspw-nav a {
	font-size: 14px;
	font-weight: 600;
	color: var(--nspw-primary, #0d0d0d);
	text-decoration: none;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
}
.nspw-nav a:hover,
.nspw-nav a.is-active { border-bottom-color: var(--nspw-accent, #c9a227); }

.nspw-title {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 700;
	color: var(--nspw-primary, #0d0d0d);
	letter-spacing: 0.2px;
}

.nspw-box label { display: block; font-weight: 600; margin: 14px 0 5px; color: #222; font-size: 14px; }
.nspw-box input[type=text],
.nspw-box input[type=email],
.nspw-box input[type=password],
.nspw-box input[type=number],
.nspw-box input[type=date],
.nspw-box select,
.nspw-box textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid #d8d8d8;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 15px;
	background: #fafafa;
	transition: border-color .15s, background .15s;
}
.nspw-box input:focus,
.nspw-box select:focus,
.nspw-box textarea:focus {
	outline: none;
	border-color: var(--nspw-primary, #0d0d0d);
	background: #fff;
}

.nspw-btn {
	margin-top: 20px;
	padding: 13px 26px;
	background: var(--nspw-primary, #0d0d0d);
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.2px;
	transition: background .15s, transform .1s;
}
.nspw-btn:hover { background: #000; transform: translateY(-1px); }
.nspw-btn-outline {
	display: inline-block;
	background: transparent;
	color: var(--nspw-primary, #0d0d0d);
	border: 2px solid var(--nspw-accent, #c9a227);
	text-decoration: none;
	margin-top: 12px;
}
.nspw-btn-outline:hover { background: var(--nspw-accent, #c9a227); color: #fff; }

.nspw-result, .nspw-notfound { margin-top: 24px; padding: 20px; border-radius: 10px; background: #f7f7f7; }
.nspw-result table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.nspw-result th { text-align: left; padding: 7px 10px; width: 44%; color: #666; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .4px; }
.nspw-result td { padding: 7px 10px; font-size: 15px; }
.nspw-badge { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .3px; }
.nspw-badge.nspw-active { background: #1a9c4c; }
.nspw-badge.nspw-expired { background: #c0392b; }
.nspw-notfound { color: #a00; border-left: 4px solid #c0392b; background: #fdf2f2; }

.nspw-verify { margin-top: 34px; padding-top: 26px; border-top: 1px dashed #ddd; }
.nspw-verify-ok { border-left: 4px solid #1a9c4c; background: #f2f9f4; }

.nspw-error { color: #c0392b; font-weight: 600; margin: 10px 0; }
.nspw-success { color: #1a9c4c; font-weight: 600; margin: 10px 0; }
.nspw-subtle { color: #777; font-size: 13px; margin: 4px 0 0; }
.nspw-notice { padding: 18px 20px; background: #fff8e1; border-radius: 10px; border-left: 4px solid var(--nspw-accent, #c9a227); }

.nspw-dash-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.nspw-logout { font-size: 13px; color: #777; text-decoration: underline; }

.nspw-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.nspw-table th, .nspw-table td { border-bottom: 1px solid #eee; padding: 10px; text-align: left; font-size: 14px; }
.nspw-table th { color: #666; text-transform: uppercase; font-size: 11px; letter-spacing: .4px; }
.nspw-table a { color: var(--nspw-primary, #0d0d0d); font-weight: 600; }

.nspw-add-form { border: 1px solid #eee; border-radius: 10px; padding: 22px; margin-top: 10px; background: #fcfcfc; }

@media (max-width: 480px) {
	.nspw-box { padding: 20px 18px 24px; border-radius: 10px; }
	.nspw-header { flex-direction: column; align-items: flex-start; }
}
