/**
 * White-Label SMM – JAP-style frontend panel (justanotherpanel.com inspired).
 */

:root {
	--wlsmm-primary: #f26522;
	--wlsmm-primary-dark: #d9541a;
	--wlsmm-blue: #4a6cf7;
	--wlsmm-bg: #f4f6fb;
	--wlsmm-card: #ffffff;
	--wlsmm-border: #e2e6ef;
	--wlsmm-text: #1a2232;
	--wlsmm-muted: #6b7a99;
	--wlsmm-success: #27ae60;
	--wlsmm-error: #e53e3e;
	--wlsmm-warning: #d69e2e;
	--wlsmm-radius: 8px;
	--wlsmm-shadow: 0 2px 12px rgba(0,0,0,0.07);
	--wlsmm-header-bg: #ffffff;
	--wlsmm-header-border: #e8eaf0;
}

/* ─── Reset / Base ─── */
/* Scoped to plugin containers — avoids conflicting with theme (Astra) globals. */
.wlsmm-fullpage-panel *, .wlsmm-fullpage-panel *::before, .wlsmm-fullpage-panel *::after,
.wlsmm-page-wrap *, .wlsmm-page-wrap *::before, .wlsmm-page-wrap *::after,
.wlsmm-fullpage-header *, .wlsmm-fullpage-header *::before, .wlsmm-fullpage-header *::after {
	box-sizing: border-box;
}

body.wlsmm-fullpage-panel {
	background: var(--wlsmm-bg);
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--wlsmm-text);
	font-size: 14px;
	line-height: 1.5;
}

/* ─── Full-page Shell ─── */
.wlsmm-fullpage-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ─── Header (JAP-style) ─── */
.wlsmm-fullpage-header {
	background: var(--wlsmm-header-bg);
	border-bottom: 1px solid var(--wlsmm-header-border);
	box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Fullpage template: plugin header is the only header — make it sticky. */
body.wlsmm-fullpage-panel .wlsmm-fullpage-header {
	position: sticky;
	top: 0;
	z-index: 100;
}

/* Homepage (theme-wrapper): header sits at body level between
   get_header() and the content.  Astra already has a sticky header,
   so the plugin header flows naturally without stickiness or breakout. */
.wlsmm-homepage-header .wlsmm-fullpage-header {
	position: static;
}

/* Non-homepage theme template: header injected via loop_start inside
   the theme's content container.  Break out to full viewport width
   so it isn't constrained by the container's max-width / padding. */
.wlsmm-injected-header .wlsmm-fullpage-header {
	position: relative;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}

.wlsmm-fullpage-header-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wlsmm-fullpage-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--wlsmm-primary);
	text-decoration: none;
	letter-spacing: -0.5px;
}

.wlsmm-fullpage-brand .brand-icon {
	width: 32px;
	height: 32px;
	background: var(--wlsmm-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
}

.wlsmm-fullpage-brand:hover { color: var(--wlsmm-primary-dark); }

.wlsmm-header-center {
	flex: 1;
	text-align: center;
}

.wlsmm-header-balance {
	font-size: 0.8rem;
	color: var(--wlsmm-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.wlsmm-header-balance strong {
	color: var(--wlsmm-text);
	font-weight: 700;
}

.wlsmm-header-balance .balance-refresh {
	display: inline-block;
	margin-left: 6px;
	color: var(--wlsmm-muted);
	cursor: pointer;
	font-size: 13px;
	vertical-align: middle;
}

.wlsmm-fullpage-user-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.85rem;
}

.wlsmm-fullpage-username {
	color: var(--wlsmm-muted);
	font-weight: 500;
}

.wlsmm-fullpage-link {
	color: var(--wlsmm-text);
	text-decoration: none;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 6px;
	transition: background 0.15s;
}

.wlsmm-fullpage-link:hover { background: #f0f2f8; color: var(--wlsmm-primary); }

.wlsmm-fullpage-logout {
	color: var(--wlsmm-muted);
}

.wlsmm-header-menu-icon {
	display: none;
	cursor: pointer;
	padding: 6px;
	border-radius: 6px;
	color: var(--wlsmm-muted);
}

/* ─── Main Content ─── */
.wlsmm-fullpage-main {
	flex: 1;
	padding: 24px 16px 48px;
}

.wlsmm-fullpage-panel .wlsmm-page-wrap {
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

/* ─── Social Network Grid (like JAP) ─── */
.wlsmm-network-section {
	background: var(--wlsmm-card);
	border: 1px solid var(--wlsmm-border);
	border-radius: var(--wlsmm-radius);
	box-shadow: var(--wlsmm-shadow);
	margin-bottom: 16px;
	overflow: hidden;
}

.wlsmm-network-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	border-bottom: 1px solid var(--wlsmm-border);
	background: #fafbfd;
}

.wlsmm-network-section-title {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--wlsmm-muted);
}

.wlsmm-network-hide-filter {
	font-size: 0.8rem;
	color: var(--wlsmm-blue);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	padding: 0;
	font-weight: 500;
}

.wlsmm-network-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.wlsmm-network-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 8px;
	border: none;
	border-right: 1px solid var(--wlsmm-border);
	border-bottom: 1px solid var(--wlsmm-border);
	background: #fff;
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--wlsmm-text);
	transition: background 0.15s, color 0.15s;
	text-align: center;
}

.wlsmm-network-btn:nth-child(4n) { border-right: none; }

.wlsmm-network-btn:hover {
	background: #f0f3ff;
	color: var(--wlsmm-blue);
}

.wlsmm-network-btn.is-active {
	background: #eef2ff;
	color: var(--wlsmm-blue);
	font-weight: 700;
}

.wlsmm-network-btn .net-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

/* Instagram pink */
.wlsmm-network-btn[data-net="instagram"] .net-icon { color: #e1306c; }
/* Facebook blue */
.wlsmm-network-btn[data-net="facebook"] .net-icon { color: #1877f2; }
/* YouTube red */
.wlsmm-network-btn[data-net="youtube"] .net-icon { color: #ff0000; }
/* Twitter/X */
.wlsmm-network-btn[data-net="twitter"] .net-icon,
.wlsmm-network-btn[data-net="x (twitter)"] .net-icon { color: #000; }
/* TikTok */
.wlsmm-network-btn[data-net="tiktok"] .net-icon { color: #010101; }
/* Spotify */
.wlsmm-network-btn[data-net="spotify"] .net-icon { color: #1db954; }
/* Telegram */
.wlsmm-network-btn[data-net="telegram"] .net-icon { color: #0088cc; }
/* LinkedIn */
.wlsmm-network-btn[data-net="linkedin"] .net-icon { color: #0a66c2; }
/* Discord */
.wlsmm-network-btn[data-net="discord"] .net-icon { color: #5865f2; }
/* Snapchat */
.wlsmm-network-btn[data-net="snapchat"] .net-icon { color: #fffc00; }

/* Panel nav – hidden (navigation is handled by WooCommerce My Account) */
.wlsmm-panel-nav {
	display: none;
	margin: 0;
	padding: 0;
}

.wlsmm-nav-item {
	flex: 1;
	text-align: center;
	padding: 14px 12px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--wlsmm-muted);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-right: 1px solid var(--wlsmm-border);
	transition: background 0.15s, color 0.15s;
}

.wlsmm-nav-item:last-child { border-right: none; }

.wlsmm-nav-item:hover {
	background: #f6f8ff;
	color: var(--wlsmm-blue);
}

.wlsmm-nav-item.is-active {
	background: var(--wlsmm-primary);
	color: #fff;
}

/* ─── Order Form Panel ─── */
.wlsmm-panel {
	background: var(--wlsmm-card);
	border-radius: var(--wlsmm-radius);
	box-shadow: var(--wlsmm-shadow);
	border: 1px solid var(--wlsmm-border);
	overflow: visible;
}

.wlsmm-order-form {
	padding: 20px 20px 24px;
}

.wlsmm-form-row {
	margin-bottom: 16px;
}

.wlsmm-form-row label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--wlsmm-text);
}

.wlsmm-form-row select,
.wlsmm-form-row input[type="url"],
.wlsmm-form-row input[type="number"],
.wlsmm-form-row input[type="text"] {
	width: 100%;
	padding: 9px 12px;
	border: 1px solid var(--wlsmm-border);
	border-radius: 6px;
	font-size: 0.9rem;
	color: var(--wlsmm-text);
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}

.wlsmm-form-row select:focus,
.wlsmm-form-row input:focus {
	border-color: var(--wlsmm-blue);
	box-shadow: 0 0 0 3px rgba(74,108,247,0.12);
}

.wlsmm-form-row select:disabled {
	background: #f7f9fc;
	cursor: not-allowed;
	color: var(--wlsmm-muted);
}

/* Search bar (JAP-style) */
.wlsmm-search-wrap {
	padding: 12px 20px 4px;
	position: relative;
}

.wlsmm-search-wrap input {
	width: 100%;
	padding: 9px 12px 9px 36px;
	border: 1px solid var(--wlsmm-border);
	border-radius: 6px;
	font-size: 0.9rem;
	outline: none;
	background: #f7f9fc;
	transition: border-color 0.2s, background 0.2s;
}

.wlsmm-search-wrap input:focus {
	border-color: var(--wlsmm-blue);
	background: #fff;
}

.wlsmm-search-wrap .search-icon {
	position: absolute;
	left: 32px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--wlsmm-muted);
	font-size: 14px;
	pointer-events: none;
}

/* Sort row */
.wlsmm-sort-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 20px 8px;
}

.wlsmm-sort-label {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--wlsmm-muted);
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 4px;
}

.wlsmm-sort-label .sort-icon {
	font-size: 1rem;
}

.wlsmm-sort-select {
	padding: 6px 10px;
	border: 1px solid var(--wlsmm-border);
	border-radius: 6px;
	font-size: 0.85rem;
	background: #f7f9fc;
	color: var(--wlsmm-text);
	outline: none;
	cursor: pointer;
	min-width: 170px;
	transition: border-color 0.2s;
}

.wlsmm-sort-select:focus {
	border-color: var(--wlsmm-blue);
	background: #fff;
}

/* Service description box (like JAP's service details below dropdown) */
.wlsmm-service-description {
	background: #f7f9fc;
	border: 1px solid var(--wlsmm-border);
	border-radius: 6px;
	padding: 10px 14px;
	margin-bottom: 14px;
	font-size: 0.85rem;
	color: var(--wlsmm-muted);
}

.wlsmm-service-description h4 {
	margin: 0 0 6px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--wlsmm-text);
}

.wlsmm-service-description p {
	margin: 3px 0;
}

/* Service stat boxes (Start Time, Speed, Guaranteed, Avg Time) */
.wlsmm-service-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 12px 0 16px;
}

.wlsmm-stat-box {
	background: #f7f9fc;
	border: 1px solid var(--wlsmm-border);
	border-radius: 6px;
	padding: 10px 14px;
}

.wlsmm-stat-label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--wlsmm-muted);
	margin-bottom: 4px;
}

.wlsmm-stat-value {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--wlsmm-primary);
}

/* Charge / Total box */
.wlsmm-total-box {
	background: #f7f9fc;
	border: 1px solid var(--wlsmm-border);
	border-radius: 6px;
	padding: 10px 14px;
	margin-bottom: 16px;
}

.wlsmm-total-box input {
	width: 100%;
	border: none;
	background: transparent;
	font-size: 0.9rem;
	color: var(--wlsmm-muted);
	outline: none;
	pointer-events: none;
}

/* Submit button – orange like JAP */
.wlsmm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	font-size: 0.92rem;
	font-weight: 700;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wlsmm-btn-primary {
	background: var(--wlsmm-primary);
	color: #fff;
	width: 100%;
}

.wlsmm-btn-primary:hover:not(:disabled) {
	background: var(--wlsmm-primary-dark);
}

.wlsmm-btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Alert banners */
.wlsmm-alert {
	padding: 12px 16px;
	margin: 16px 20px;
	border-radius: 6px;
	font-size: 0.9rem;
}

.wlsmm-alert-warning {
	background: #fffbeb;
	border: 1px solid #f6e05e;
	color: #744210;
}

.wlsmm-alert-info {
	background: #ebf8ff;
	border: 1px solid #90cdf4;
	color: #2c5282;
}

.wlsmm-login-link { margin-left: 8px; font-weight: 600; }

/* Guest overlay – login prompt below the order form */
.wlsmm-guest-overlay {
	margin: 20px;
	padding: 28px 24px;
	background: linear-gradient(135deg, #f26522 0%, #e05a1a 100%);
	border-radius: 10px;
	text-align: center;
	color: #fff;
}

.wlsmm-guest-overlay-content h3 {
	margin: 0 0 8px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
}

.wlsmm-guest-overlay-content p {
	margin: 0 0 14px;
	font-size: 0.92rem;
	opacity: 0.9;
	color: #fff;
}

.wlsmm-guest-overlay-content .wlsmm-btn-primary {
	background: #fff;
	color: #f26522;
	width: auto;
	min-width: 180px;
	display: inline-flex;
}

.wlsmm-guest-overlay-content .wlsmm-btn-primary:hover {
	background: #fef0e8;
}

.wlsmm-guest-overlay-content a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}

.wlsmm-guest-overlay-content a:hover {
	color: #ffe0cc;
}

/* Register link in header for guests */
.wlsmm-fullpage-register {
	background: var(--wlsmm-primary);
	color: #fff !important;
	border-radius: 5px;
	padding: 6px 14px;
}

.wlsmm-fullpage-register:hover {
	background: var(--wlsmm-primary-dark);
	color: #fff !important;
}

/* Order result message */
.wlsmm-message {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 0.88rem;
}

.wlsmm-message.success {
	background: #f0fff4;
	border: 1px solid #9ae6b4;
	color: var(--wlsmm-success);
}

.wlsmm-message.error {
	background: #fff5f5;
	border: 1px solid #feb2b2;
	color: var(--wlsmm-error);
}

.wlsmm-loading { opacity: 0.6; pointer-events: none; }

/* Qty hint */
.wlsmm-qty-hint {
	font-size: 0.78rem;
	color: var(--wlsmm-muted);
	margin-top: 4px;
}

/* ─── Login Panel ─── */
.wlsmm-login-panel-body {
	padding: 32px 28px;
	text-align: center;
}

.wlsmm-login-panel-body p {
	color: var(--wlsmm-muted);
	margin: 0 0 20px;
}

.wlsmm-btn-block { width: 100%; }

.wlsmm-register-hint {
	margin-top: 16px !important;
	font-size: 0.88rem;
	color: var(--wlsmm-muted);
}

/* ─── Order History Table ─── */
.wlsmm-history-panel .wlsmm-panel-header {
	padding: 14px 20px;
	border-bottom: 1px solid var(--wlsmm-border);
	background: #fafbfd;
}

.wlsmm-history-panel .wlsmm-panel-title {
	color: var(--wlsmm-text);
	font-size: 1rem;
	font-weight: 700;
}

.wlsmm-history-body { padding: 0 0 16px; }

.wlsmm-history-search {
	padding: 12px 20px;
	border-bottom: 1px solid var(--wlsmm-border);
}

.wlsmm-history-search input {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--wlsmm-border);
	border-radius: 6px;
	font-size: 0.88rem;
	outline: none;
	background: #f7f9fc;
}

.wlsmm-history-search input:focus {
	border-color: var(--wlsmm-blue);
	background: #fff;
}

.wlsmm-table-responsive { overflow-x: auto; }

.wlsmm-orders-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
}

.wlsmm-orders-table th,
.wlsmm-orders-table td {
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid var(--wlsmm-border);
}

.wlsmm-orders-table th {
	background: #f7f9fc;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--wlsmm-muted);
	white-space: nowrap;
}

.wlsmm-orders-table tbody tr:hover { background: #fafbfd; }

.wlsmm-orders-table a {
	color: var(--wlsmm-blue);
	word-break: break-all;
}

/* Status badges */
.wlsmm-status-badge {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.wlsmm-status-success { background: #d4edda; color: #155724; }
.wlsmm-status-error   { background: #f8d7da; color: #721c24; }
.wlsmm-status-pending { background: #fff3cd; color: #856404; }

/* Refresh button */
.wlsmm-refresh-status {
	margin-left: 6px;
	padding: 2px 7px;
	border: 1px solid var(--wlsmm-border);
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.4;
	vertical-align: middle;
	transition: background 0.15s;
}

.wlsmm-refresh-status:hover {
	background: #edf2ff;
	border-color: var(--wlsmm-blue);
}

.wlsmm-refresh-status:disabled { opacity: 0.5; cursor: not-allowed; }

/* Refill button */
.wlsmm-refill-order {
	padding: 4px 12px;
	border: 1px solid var(--wlsmm-blue);
	border-radius: 4px;
	background: var(--wlsmm-blue);
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	transition: background 0.15s, opacity 0.15s;
}

.wlsmm-refill-order:hover {
	background: var(--wlsmm-primary-dark, #1e40af);
	border-color: var(--wlsmm-primary-dark, #1e40af);
}

.wlsmm-refill-order:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.wlsmm-no-refill {
	color: var(--wlsmm-muted);
	font-size: 13px;
}

/* Expired refill indicator */
.wlsmm-refill-expired {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	background: #f1f3f5;
	color: #868e96;
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
	cursor: not-allowed;
}

/* Pagination */
.wlsmm-pagination {
	display: flex;
	gap: 5px;
	justify-content: center;
	margin-top: 16px;
	flex-wrap: wrap;
	padding: 0 20px;
}

.wlsmm-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	border: 1px solid var(--wlsmm-border);
	border-radius: 5px;
	text-decoration: none;
	color: var(--wlsmm-text);
	font-size: 0.85rem;
	font-weight: 500;
}

.wlsmm-page-link:hover,
.wlsmm-page-link.is-active {
	background: var(--wlsmm-primary);
	border-color: var(--wlsmm-primary);
	color: #fff;
}

/* ─── My Account embed ─── */
.wlsmm-account-wrap .wlsmm-page-wrap,
.woocommerce-account .wlsmm-page-wrap {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

/* ─── Page Wrap ─── */
.wlsmm-page-wrap {
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

/* ─── Wallet badge in header ─── */
.wlsmm-wallet-badge {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wlsmm-wallet-label {
	font-size: 0.78rem;
	color: var(--wlsmm-muted);
	font-weight: 500;
}

.wlsmm-wallet-amount {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--wlsmm-text);
}

.wlsmm-wallet-topup {
	font-size: 0.78rem;
	background: var(--wlsmm-primary);
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.15s;
}

.wlsmm-wallet-topup:hover { background: var(--wlsmm-primary-dark); color: #fff; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
	.wlsmm-page-wrap {
		max-width: 100%;
		padding: 0 12px;
	}

	.wlsmm-fullpage-main {
		padding: 16px 8px 32px;
	}
}

@media (max-width: 600px) {
	.wlsmm-network-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wlsmm-fullpage-header-inner {
		padding: 0 12px;
	}

	.wlsmm-header-center { display: none; }

	.wlsmm-service-stats {
		grid-template-columns: 1fr 1fr;
	}

	.wlsmm-orders-table thead { display: none; }

	.wlsmm-orders-table tr {
		display: block;
		margin-bottom: 12px;
		border: 1px solid var(--wlsmm-border);
		border-radius: 6px;
		padding: 6px 0;
	}

	.wlsmm-orders-table td {
		display: flex;
		justify-content: space-between;
		padding: 7px 12px;
		border: none;
		border-bottom: 1px solid #f0f2f8;
		font-size: 0.82rem;
	}

	.wlsmm-orders-table td:last-child { border-bottom: none; }

	.wlsmm-orders-table td::before {
		content: attr(data-label);
		font-weight: 700;
		margin-right: 12px;
		color: var(--wlsmm-muted);
		flex-shrink: 0;
		font-size: 0.75rem;
		text-transform: uppercase;
	}

	.wlsmm-panel-nav { flex-wrap: wrap; }

	.wlsmm-nav-item {
		padding: 10px 8px;
		font-size: 0.78rem;
	}
}

@media (max-width: 400px) {
	.wlsmm-network-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
