/* PopifyAds — Push Ads (canal push): previews de notificação, wizard, detalhe, área do publisher, Intelligence. Depende de app.css. */

/* ---------- previews de notificação ---------- */
.na-pp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.na-pp-label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--na-text-dim); margin-bottom: 6px; }
.na-pp-note { font-size: 12px; color: var(--na-text-dim); margin-top: 10px; }
.na-pp { width: 100%; max-width: 360px; border-radius: 14px; overflow: hidden; font-family: var(--na-font); }
.na-pp__row { display: flex; gap: 12px; align-items: flex-start; }
.na-pp__ico { width: 40px; height: 40px; flex: none; border-radius: 10px; background: linear-gradient(135deg,#4F7CFF,#7C5CFF); background-size: cover; background-position: center; }
.na-pp__txt { flex: 1; min-width: 0; }
.na-pp__title { font-size: 14px; font-weight: 600; line-height: 1.3; word-break: break-word; }
.na-pp__body { font-size: 13px; line-height: 1.35; margin-top: 2px; word-break: break-word; }
.na-pp__img { aspect-ratio: 2 / 1; height: auto; background-size: cover; background-position: center; }

/* Android (Chrome, tema escuro do sistema) */
.na-pp--android { background: #1c1f26; color: #e9ecf2; border: 1px solid #2c313c; box-shadow: 0 6px 24px rgba(0,0,0,.4); }
.na-pp--android .na-pp__app { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #aab2c0; padding: 10px 14px 6px; }
.na-pp__appico { width: 14px; height: 14px; border-radius: 50%; background: conic-gradient(#ea4335 0 33%, #fbbc04 33% 66%, #34a853 66% 100%); position: relative; flex: none; }
.na-pp__appico::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #4285f4; box-shadow: 0 0 0 1.5px #1c1f26; }
.na-pp--android .na-pp__row { padding: 4px 14px 12px; }
.na-pp--android .na-pp__body { color: #c5ccd8; }
.na-pp--android .na-pp__img { margin: 0 14px 14px; border-radius: 10px; }

/* Desktop (Windows / Chrome, tema claro) */
.na-pp--desktop { background: #ffffff; color: #1f1f1f; border: 1px solid #d5d9e0; box-shadow: 0 10px 30px rgba(0,0,0,.35); border-radius: 8px; }
.na-pp__bar { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #5f6368; padding: 8px 12px; border-bottom: 1px solid #eceff3; background: #f6f7f9; }
.na-pp__x { font-size: 11px; color: #80868b; }
.na-pp--desktop .na-pp__row { padding: 12px; }
.na-pp--desktop .na-pp__ico { border-radius: 6px; }
.na-pp--desktop .na-pp__body { color: #3c4043; }
.na-pp__host { font-size: 11px; color: #80868b; margin-top: 4px; }
.na-pp--desktop .na-pp__img { aspect-ratio: 2 / 1; height: auto; }

/* In-page (card claro dentro do site, 320px, fechável) */
.na-pp--inpage { position: relative; max-width: 320px; background: #ffffff; color: #1f1f1f; border: 1px solid #e3e6eb; border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,.28); }
.na-pp--inpage .na-pp__row { padding: 12px 34px 12px 12px; }
.na-pp--inpage .na-pp__ico { width: 44px; height: 44px; border-radius: 10px; }
.na-pp--inpage .na-pp__body { color: #3c4043; }
.na-pp--inpage .na-pp__host { font-size: 11px; color: #80868b; margin-top: 4px; }
.na-pp__close { position: absolute; top: 6px; right: 8px; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; line-height: 1; color: #5f6368; background: #f1f3f4; }
/* 3 previews: Android + Desktop lado a lado, in-page ocupa a linha de baixo (as colunas do wizard são estreitas) */
.na-pp-grid--3 { grid-template-columns: 1fr 1fr; }
.na-pp-grid--3 > div:nth-child(3) { grid-column: 1 / -1; }

/* ---------- estado de envio (push_state) ---------- */
.na-pstate { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--na-text-dim); white-space: nowrap; }
.na-pstate--building { color: #f4cd80; }
.na-pstate--dispatching { color: #7be0aa; }
.na-pdot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: na-ppulse 1s ease-in-out infinite; }
@keyframes na-ppulse { 0%, 100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }

/* ---------- wizard push ---------- */
.na-pgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.na-pgrid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.na-pgrid2 .na-field, .na-pgrid3 .na-field { margin-bottom: 0; }
.na-psec { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--na-border); }
.na-psec:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.na-psec__t { font-size: 13px; font-weight: 700; margin: 0 0 4px; }
.na-psec__d { font-size: 12px; color: var(--na-text-dim); margin: 0 0 12px; }
.na-pmodels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.na-pmodel { text-align: left; border: 1px solid var(--na-border); background: var(--na-bg); color: var(--na-text); border-radius: 10px; padding: 12px; cursor: pointer; font-family: inherit; }
.na-pmodel strong { display: block; font-size: 14px; }
.na-pmodel span { display: block; font-size: 12px; color: var(--na-text-dim); margin-top: 3px; line-height: 1.4; }
.na-pmodel.on { border-color: var(--na-primary); background: rgba(79,124,255,.12); }
.na-pinline { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.na-pinline .na-input { width: auto; min-width: 90px; }
.na-pinline span { font-size: 13px; color: var(--na-text-dim); }
.na-pest { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 10px; background: rgba(79,124,255,.10); border: 1px solid rgba(79,124,255,.35); margin-bottom: 16px; }
.na-pest__n { font-size: 22px; font-weight: 800; }
.na-pest__l { font-size: 12px; color: var(--na-text-dim); }
.na-pest.is-loading .na-pest__n { opacity: .5; }
.na-pcr-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 22px; align-items: start; }
.na-pcount { font-size: 11px; color: var(--na-text-dim); float: right; }
.na-pcount.over { color: var(--na-danger); }
.na-pcr-item { display: flex; align-items: center; gap: 14px; padding: 10px; border: 1px solid var(--na-border); border-radius: 10px; background: var(--na-bg); }
.na-pcr-item .na-pp { max-width: 220px; flex: none; }
.na-pcr-item .na-pp__img { height: 70px; aspect-ratio: auto; }
.na-pcr-item .na-cr-meta { flex: 1; }
.na-pmacros { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 4px; }
.na-pmacro { font-family: ui-monospace, monospace; font-size: 11px; padding: 4px 8px; border-radius: 6px; border: 1px solid var(--na-border); background: var(--na-surface-2); color: var(--na-text); cursor: pointer; }
.na-pmacro:hover { border-color: var(--na-primary); }
.na-pcode { position: relative; background: var(--na-surface-2); border: 1px solid var(--na-border); border-radius: 8px; padding: 10px 12px; font-family: ui-monospace, monospace; font-size: 11.5px; color: var(--na-text); white-space: pre-wrap; word-break: break-all; margin: 6px 0 8px; max-height: 220px; overflow: auto; }
.na-pbsum { margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: var(--na-bg); border: 1px dashed var(--na-border); font-size: 13px; }
.na-pbsum b { color: #b9caff; }
.na-plaunch { text-align: center; padding: 24px 12px; }
.na-plaunch h3 { margin: 0 0 6px; font-size: 18px; }
.na-plaunch p { color: var(--na-text-dim); font-size: 13px; margin: 0 0 18px; }
.na-plaunch__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- segmentado de período / sub-abas ---------- */
.na-prange { display: inline-flex; border: 1px solid var(--na-border); border-radius: 8px; overflow: hidden; }
.na-prange button { background: transparent; border: 0; color: var(--na-text-dim); padding: 0 12px; height: 34px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; border-right: 1px solid var(--na-border); }
.na-prange button:last-child { border-right: 0; }
.na-prange button.on { background: rgba(79,124,255,.16); color: #b9caff; }
.na-ptabs { display: flex; gap: 4px; border-bottom: 1px solid var(--na-border); margin-bottom: 18px; overflow-x: auto; }
.na-ptab { background: transparent; border: 0; border-bottom: 2px solid transparent; color: var(--na-text-dim); padding: 10px 14px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; margin-bottom: -1px; }
.na-ptab.on { color: var(--na-text); border-bottom-color: var(--na-primary); }
.na-ptools { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 14px; }
.na-ptools .na-field { margin: 0; }
.na-ptools select.na-input { width: auto; min-width: 150px; }

/* ---------- detalhe ---------- */
.na-phead { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.na-phead__acts { display: flex; gap: 8px; flex-wrap: wrap; }
.na-pmeta { font-size: 12px; color: var(--na-text-dim); margin-top: 4px; line-height: 1.7; }
.na-pmeta b { color: var(--na-text); font-weight: 600; }

/* ---------- publisher: sites e guia ---------- */
.na-psite { margin-bottom: 14px; }
.na-psite__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.na-psite__dom { font-size: 15px; font-weight: 700; }
.na-psite__sub { font-size: 12px; color: var(--na-text-dim); margin-top: 3px; }
.na-pguide { margin-top: 14px; border-top: 1px solid var(--na-border); padding-top: 14px; }
.na-pguide__tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.na-pguide__tab { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--na-border); background: var(--na-bg); color: var(--na-text-dim); cursor: pointer; font-family: inherit; text-align: left; font-size: 13px; font-weight: 600; }
.na-pguide__n { width: 24px; height: 24px; flex: none; border-radius: 7px; background: var(--na-surface-2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.na-pguide__tab.on { border-color: var(--na-primary); color: var(--na-text); }
.na-pguide__tab.on .na-pguide__n { background: rgba(79,124,255,.18); color: #b9caff; }
.na-pguide__tab.done .na-pguide__n { background: rgba(47,191,113,.16); color: var(--na-success); }
.na-pguide__body h4 { margin: 0 0 6px; font-size: 14px; }
.na-pguide__body p { font-size: 13px; color: var(--na-text-dim); margin: 0 0 10px; }
.na-pguide__body ol { font-size: 13px; color: var(--na-text-dim); padding-left: 18px; margin: 0 0 12px; line-height: 1.8; }
.na-pguide__foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.na-pcheck { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; background: var(--na-bg); border: 1px solid var(--na-border); margin-bottom: 8px; font-size: 13px; }
.na-pcheck__i { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex: none; }
.na-pcheck.ok .na-pcheck__i { background: rgba(47,191,113,.16); color: var(--na-success); }
.na-pcheck.bad .na-pcheck__i { background: rgba(229,72,77,.16); color: var(--na-danger); }
.na-pcheck small { display: block; color: var(--na-text-dim); font-size: 12px; }
.na-pverify { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.na-pverify__res { font-size: 13px; }
.na-pverify__res.ok { color: var(--na-success); }
.na-pverify__res.bad { color: var(--na-danger); }
.na-pzone-add { display: grid; grid-template-columns: 1.3fr 1fr 100px 1.4fr auto; gap: 8px; align-items: end; margin-top: 10px; }
.na-pzone-add .na-field { margin: 0; }

/* ---------- top tables lado a lado ---------- */
.na-ptop { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; margin-bottom: 18px; }
.na-ptop .na-table-wrap { margin: 0; }
.na-ptop__t { padding: 12px 14px; font-weight: 600; font-size: 13px; border-bottom: 1px solid var(--na-border); }

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
	.na-pp-grid, .na-pp-grid--3, .na-pgrid2, .na-pgrid3, .na-pcr-grid { grid-template-columns: 1fr; }
	.na-pmodels { grid-template-columns: 1fr; }
	.na-pguide__tabs { grid-template-columns: 1fr 1fr; }
	.na-pzone-add { grid-template-columns: 1fr 1fr; }
	.na-pp { max-width: 100%; }
}
@media (max-width: 600px) {
	.na-pguide__tabs { grid-template-columns: 1fr; }
	.na-pzone-add { grid-template-columns: 1fr; }
	.na-pzone__ip select.na-input { min-width: 0; width: 100%; }
	.na-pp--inpage { max-width: 100%; }
	.na-prange button { padding: 0 9px; }
}

/* inputs de arquivo: mesmo visual dos .na-input, sem estourar a coluna */
.na-root input[type="file"].na-input { padding: 6px 8px; height: auto; font-size: 12px; color: var(--na-text-dim); max-width: 100%; }
.na-root input[type="file"].na-input::file-selector-button { background: var(--na-surface-2); color: var(--na-text); border: 1px solid var(--na-border); border-radius: 6px; padding: 4px 10px; margin-right: 8px; font: inherit; font-size: 12px; cursor: pointer; }
.na-pgrid2 { min-width: 0; }
.na-pgrid2 > .na-field { min-width: 0; }
/* tabelas do push: sem quebra de linha nas células (o wrap já rola horizontalmente) */
#na-push .na-table th, #na-push .na-table td, .na-pstats .na-table th, .na-pstats .na-table td { white-space: nowrap; }
#na-push .na-table td:nth-child(2) { white-space: normal; min-width: 180px; }

/* ---------- retargeting (avançado) — bloco colapsável no passo Audiência ---------- */
.na-pret__hd { display: flex; align-items: center; gap: 8px; width: 100%; background: transparent; border: 0; padding: 0; color: var(--na-text); cursor: pointer; font-family: inherit; text-align: left; }
.na-pret__chev { display: inline-block; font-size: 12px; color: var(--na-text-dim); transition: transform .15s; }
.na-pret.open .na-pret__chev { transform: rotate(90deg); }
.na-pret__body { margin-top: 12px; }
.na-pret__body .na-field { margin-bottom: 10px; }
.na-pret__body .na-chip small { font-size: 10px; opacity: .75; margin-left: 2px; }
.na-pret__empty { font-size: 13px; color: var(--na-text-dim); padding: 12px 14px; border-radius: 10px; background: var(--na-bg); border: 1px dashed var(--na-border); }

/* ---------- otimização automática de criativos (toggle + texto) ---------- */
.na-popt { display: flex; align-items: flex-start; gap: 12px; }
.na-popt .na-toggle { flex: none; margin-top: 2px; }
.na-popt .na-psec__t { margin-bottom: 2px; }

/* ---------- In-Page Push: toggle do anunciante, pill e seletor do publisher ---------- */
.na-pinpage.is-disabled .na-toggle { opacity: .45; cursor: not-allowed; }
.na-pinpage.is-disabled .na-psec__t { color: var(--na-text-dim); }
.na-pinpage__warn { font-size: 12px; color: #f4cd80; margin: 6px 0 0; }
.na-pill--inpage { background: rgba(79,124,255,.14); color: #b9caff; }
.na-pzone__ip { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 8px 0; }
.na-pzone__ip label { font-size: 12px; color: var(--na-text-dim); font-weight: 600; white-space: nowrap; }
.na-pzone__ip select.na-input { width: auto; max-width: 100%; min-width: 200px; }
.na-pzone__ipd { font-size: 12px; color: var(--na-text-dim); flex: 1 1 220px; min-width: 0; margin: 0; }
/* aviso inline: In-Page ligado × retargeting/idade/atividade (backend recusa com inpage_targeting) */
.na-pinpage__conf { font-size: 12px; line-height: 1.45; color: #f0999b; background: rgba(229,72,77,.10); border: 1px solid rgba(229,72,77,.35); border-radius: 8px; padding: 8px 10px; margin: 8px 0 12px; }
.na-pinpage__conf b { color: var(--na-text); }
/* zona pausada pela rede (403 fraud_paused no activate) */
.na-pzone__fraud { font-size: 12px; line-height: 1.45; color: #f0999b; background: rgba(229,72,77,.10); border: 1px solid rgba(229,72,77,.35); border-radius: 8px; padding: 8px 10px; margin: 6px 0 8px; }

/* ---------- desempenho por criativo no detalhe: CTR + peso (barra fina) ---------- */
.na-crperf { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 6px; font-size: 12px; color: var(--na-text-dim); }
.na-crperf__k b { color: var(--na-text); font-weight: 600; }
.na-wbar { display: inline-block; width: 120px; max-width: 100%; height: 4px; border-radius: 999px; background: var(--na-border); overflow: hidden; vertical-align: middle; }
.na-wbar__f { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--na-primary), #7C5CFF); }
@media (max-width: 600px) {
	.na-wbar { width: 80px; }
}

/* ---------- Intelligence (anunciante): dashboard, otimização, experimentos, journeys, webhooks, API, deals ---------- */
.na-input--sm { height: 32px; font-size: 12px; padding: 0 8px; }
.na-ioff { border-style: dashed; }
.na-igrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.na-icard { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.na-icard__t { font-size: 14px; font-weight: 700; }
.na-icard__b { flex: 1; min-width: 0; }
.na-icard__f { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--na-border); }
.na-icard__off { font-size: 12px; color: #f4cd80; }
.na-ilist { display: flex; flex-direction: column; gap: 6px; }
.na-ilist__r { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; padding: 6px 0; border-bottom: 1px dashed var(--na-border); }
.na-ilist__r:last-child { border-bottom: 0; }
.na-ilist__r span, .na-ilist__r small { color: var(--na-text-dim); font-size: 12px; }
.na-iurl { font-size: 12px; word-break: break-all; }
.na-ichecks { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.na-icheck { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--na-text); cursor: pointer; margin: 0; }
.na-icheck input { accent-color: var(--na-primary); margin: 0; }
.na-isecret { margin-bottom: 16px; padding: 14px 16px; border-radius: 10px; background: rgba(244,183,64,.10); border: 1px solid rgba(244,183,64,.45); }
.na-isecret__t { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.na-isecret .na-pcode { max-height: none; font-size: 12.5px; }
.na-iexplain { margin: 0 0 12px; padding-left: 18px; font-size: 13px; line-height: 1.6; }
.na-iexplain li { margin-bottom: 4px; }
.na-iscore { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; }
.na-iscore .na-wbar { width: 70px; }
.na-iscore--up .na-wbar__f { background: var(--na-success); }
.na-iscore--down .na-wbar__f { background: var(--na-danger); }
.na-irule { display: flex; gap: 6px; align-items: center; }
.na-irule select.na-input { width: auto; min-width: 120px; }
.na-irule input.na-input { width: 70px; }
.na-itable th, .na-itable td { white-space: nowrap; }
.na-ibuckets { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.na-ibucket { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--na-surface-2); color: var(--na-text-dim); font-variant-numeric: tabular-nums; }
.na-ivar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 8px 10px; border: 1px solid var(--na-border); border-radius: 8px; background: var(--na-bg); margin-bottom: 6px; }
.na-ivar__w { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--na-text-dim); margin-left: auto; }
.na-ivar__w input.na-input { width: 70px; }
.na-ivars { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.na-ivbar { padding: 10px 12px; border: 1px solid var(--na-border); border-radius: 10px; background: var(--na-bg); }
.na-ivbar.is-lead { border-color: rgba(124,92,255,.5); }
.na-ivbar.is-win { border-color: var(--na-success); }
.na-ivbar__h { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; margin-bottom: 6px; }
.na-ivbar__v { margin-left: auto; font-weight: 700; font-variant-numeric: tabular-nums; }
.na-ivbar__m { font-size: 12px; color: var(--na-text-dim); margin-top: 6px; }
.na-wbar--lg { display: block; width: 100%; height: 8px; }
.na-ieval { font-size: 13px; padding: 10px 12px; border-radius: 8px; background: rgba(79,124,255,.10); border: 1px solid rgba(79,124,255,.35); margin-top: 12px; line-height: 1.5; }
/* journeys: cards de passo ordenáveis */
.na-jstep { border: 1px solid var(--na-border); border-radius: 10px; background: var(--na-bg); padding: 12px; margin-bottom: 10px; }
.na-jstep__h { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.na-jstep__n { font-size: 12px; font-weight: 800; color: #b9caff; background: rgba(79,124,255,.14); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.na-jstep__t { width: auto !important; min-width: 160px; }
.na-jstep__sp { flex: 1; }
.na-jstep__b .na-pinline .na-input { width: auto; min-width: 90px; max-width: 100%; }
.na-jstep__b .na-pinline select.na-input { min-width: 150px; }
.na-jstep__b.is-ro .na-input { pointer-events: none; opacity: .7; }
.na-jstep__s { font-size: 12px; color: var(--na-text-dim); margin-top: 10px; padding-top: 8px; border-top: 1px dashed var(--na-border); }
.na-jstep__s b { color: var(--na-text); }
/* publisher: preferências por zona + deals */
.na-pzone__prefs { margin: 8px 0; padding: 10px 12px; border-radius: 8px; border: 1px dashed var(--na-border); background: var(--na-surface); }
.na-pzone__prefs .na-popt { margin-bottom: 8px; }
.na-ptopics { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 6px 0; }
.na-ptopic { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(79,124,255,.14); color: #b9caff; font-weight: 600; }
.na-ptopic button { background: transparent; border: 0; color: inherit; cursor: pointer; font-size: 13px; line-height: 1; padding: 0; }
.na-ptopics input.na-input { width: 180px; height: 30px; font-size: 12px; }
@media (max-width: 700px) {
	.na-igrid { grid-template-columns: 1fr; }
	.na-irule { flex-wrap: wrap; }
	.na-jstep__b .na-pinline .na-input, .na-jstep__b .na-pinline select.na-input { width: 100%; min-width: 0; }
	.na-ivar__w { margin-left: 0; width: 100%; }
	.na-ptabs { margin-left: -4px; margin-right: -4px; padding: 0 4px; }
	.na-phead__acts .na-btn { flex: 1 1 auto; }
}
