/* ── Container ──────────────────────────────────── */
.snx-admin-wrap { max-width: 820px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

/* ── Header ─────────────────────────────────────── */
.snx-header {
	display: flex; align-items: center; gap: 16px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	padding: 22px 28px; border-radius: 10px; margin-bottom: 24px;
	box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.snx-header img { height: 36px; filter: brightness(0) invert(1); }
.snx-header-info { flex: 1; }
.snx-header-title { color: #fff; font-size: 18px; font-weight: 600; margin: 0; }
.snx-header-sub { color: rgba(255,255,255,.6); font-size: 12px; margin-top: 3px; }
.snx-env-badge {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
	color: #fff; background: var(--snx-env-color, #2271b1);
}
.snx-env-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: snx-pulse 2s infinite; }
@keyframes snx-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ── Cards ──────────────────────────────────────── */
.snx-card {
	background: #fff; border: 1px solid #e0e0e0; border-radius: 8px;
	margin-bottom: 16px; overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.snx-card-header {
	display: flex; justify-content: space-between; align-items: center;
	background: #f8f9fa; padding: 14px 20px;
	border-bottom: 1px solid #e0e0e0;
	font-size: 14px; font-weight: 600; color: #1d2327;
}
.snx-card-header .dashicons { margin-right: 8px; color: #2271b1; vertical-align: middle; }
.snx-card-body { padding: 4px 20px 16px; }
.snx-card-body table.form-table { margin: 0; }
.snx-card-body table.form-table th { padding-left: 0; width: 200px; }

/* ── Footer ─────────────────────────────────────── */
.snx-footer {
	text-align: center; padding: 18px; margin-top: 8px;
	border-top: 1px solid #e0e0e0; color: #888; font-size: 12px;
}
.snx-footer a { color: #2271b1; text-decoration: none; }
.snx-footer a:hover { text-decoration: underline; }
.snx-footer .snx-footer-nav { margin-bottom: 6px; }
.snx-footer .snx-footer-links { font-size: 11px; color: #aaa; }
