/**
 * MineJobs component styles.
 * Dashboard shell/root layout is intentionally owned by assets/css/minejobs-dashboard-shell-lock.css.
 */
:root {
	--mjap-primary: #0467f2;
	--mjap-primary-2: #2d86ff;
	--mjap-ink: #102033;
	--mjap-text: #18324e;
	--mjap-muted: #7788a3;
	--mjap-border: #dce8fa;
	--mjap-soft: #f4f9ff;
	--mjap-card: #fff;
	--mjap-line: #e8f0fb;
	--mjap-shadow: 0 18px 48px rgba(18, 52, 104, .08);
	--mjap-shadow-soft: 0 12px 30px rgba(18, 52, 104, .06);
}

.mjap-page,
.mjap-page * {
	box-sizing: border-box;
}

.mjap-page {
	direction: rtl;
	text-align: right;
	width: 100%;
	max-width: 1220px;
	margin: 28px auto;
	padding: 0;
	color: var(--mjap-text);
}

.mjap-page a {
	text-decoration: none !important;
}

.mjap-hero {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 28px 30px;
	margin: 0 0 22px;
	border: 1px solid var(--mjap-border);
	border-radius: 32px;
	background:
		radial-gradient(circle at 3% 95%, rgba(4, 103, 242, .16), transparent 30%),
		linear-gradient(135deg, #fff 0%, #f8fbff 100%);
	box-shadow: var(--mjap-shadow);
	overflow: hidden;
}

.mjap-hero__icon,
.mjap-hero > i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 27px;
	background: linear-gradient(135deg, var(--mjap-primary), #4c98ff);
	color: #fff;
	font-size: 32px;
	box-shadow: 0 18px 38px rgba(4, 103, 242, .22);
}

.mjap-hero__content > span,
.mjap-hero span:not(.mjap-hero__status span) {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--mjap-primary);
	font-weight: 950;
	font-size: 13px;
}

.mjap-hero h1 {
	margin: 5px 0 8px;
	font-size: clamp(27px, 3.2vw, 42px);
	line-height: 1.45;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-hero p {
	margin: 0;
	color: var(--mjap-muted);
	line-height: 2;
	font-weight: 800;
}

.mjap-hero__status {
	display: grid;
	gap: 4px;
	min-width: 190px;
	padding: 14px 16px;
	border: 1px solid #cfe0f8;
	border-radius: 20px;
	background: rgba(255, 255, 255, .72);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.mjap-hero__status strong {
	color: #0f7a55;
	font-size: 15px;
	font-weight: 950;
}

.mjap-hero__status small {
	color: var(--mjap-muted);
	font-weight: 800;
	line-height: 1.7;
}

.mjap-layout {
	display: grid;
	grid-template-columns: 292px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.mjap-jobs,
.mjap-main,
.mjap-status-box,
.mjap-form,
.mjap-empty,
.mjap-login-box,
.mjap-notice,
.mjap-methods {
	border: 1px solid var(--mjap-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: var(--mjap-shadow-soft);
}

.mjap-jobs {
	position: sticky;
	top: 108px;
	padding: 18px;
}

.mjap-jobs h3 {
	margin: 0 0 15px;
	font-size: 18px;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-job-link {
	display: block;
	padding: 14px 15px;
	margin-bottom: 10px;
	border: 1px solid #e5eefb;
	border-radius: 19px;
	background: #f8fbff;
	color: var(--mjap-text) !important;
	transition: .18s ease;
}

.mjap-job-link:hover,
.mjap-job-link.is-active {
	border-color: var(--mjap-primary);
	background: #f2f7ff;
	box-shadow: 0 12px 26px rgba(4, 103, 242, .08);
	transform: translateY(-1px);
}

.mjap-job-link strong {
	display: block;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.75;
	color: var(--mjap-ink);
}

.mjap-job-link small {
	color: var(--mjap-muted);
	font-size: 12px;
	font-weight: 800;
}

.mjap-main {
	padding: 22px;
}

.mjap-selected-job {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px;
	margin-bottom: 18px;
	border: 1px solid #e5eefb;
	border-radius: 24px;
	background: linear-gradient(135deg, #f8fbff, #fff);
}

.mjap-selected-job__title span,
.mjap-selected-job > div > span {
	color: var(--mjap-muted);
	font-size: 12px;
	font-weight: 950;
}

.mjap-selected-job h2 {
	margin: 5px 0 0;
	font-size: clamp(18px, 2.4vw, 24px);
	line-height: 1.5;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-selected-job a,
.mjap-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--mjap-primary), var(--mjap-primary-2));
	color: #fff !important;
	font-weight: 950;
	box-shadow: 0 14px 30px rgba(4, 103, 242, .18);
	cursor: pointer;
}

.mjap-section-head {
	margin: 0 0 16px;
}

.mjap-section-head > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 5px;
	color: var(--mjap-primary);
	font-size: 13px;
	font-weight: 950;
}

.mjap-section-head h3,
.mjap-status-box h3,
.mjap-form h3 {
	margin: 0 0 7px;
	font-size: 21px;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-section-head p {
	margin: 0;
	color: var(--mjap-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.95;
}

.mjap-methods {
	padding: 20px;
	margin-bottom: 18px;
	background: linear-gradient(180deg, #fff, #fbfdff);
}

.mjap-method-list {
	display: grid;
	gap: 12px;
}

.mjap-method-row {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) 130px 118px;
	gap: 14px;
	align-items: center;
	min-height: 86px;
	padding: 13px 14px;
	border: 1px solid #dfe8f7;
	border-radius: 20px;
	background: #f8fbff;
	transition: .18s ease;
}

.mjap-method-row:hover {
	border-color: var(--mjap-primary);
	background: #f4f9ff;
	transform: translateY(-1px);
}

.mjap-method-row__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: linear-gradient(135deg, #eef5ff, #fff);
	border: 1px solid #dce8fa;
	color: var(--mjap-primary);
	font-size: 22px;
}

.mjap-method-row__body strong {
	display: block;
	margin-bottom: 4px;
	color: var(--mjap-ink);
	font-size: 15px;
	font-weight: 950;
}

.mjap-method-row__body small {
	display: block;
	color: var(--mjap-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.8;
}

.mjap-method-row em,
.mjap-method-row b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-style: normal;
	font-weight: 950;
	text-align: center;
}

.mjap-method-row em {
	background: #eef5ff;
	color: var(--mjap-primary);
}

.mjap-method-row b {
	background: #fff;
	border: 1px solid #e3ecfa;
	color: var(--mjap-ink);
}

.mjap-status-box {
	padding: 18px;
	margin-bottom: 18px;
}

.mjap-status-list {
	display: grid;
	gap: 10px;
}

.mjap-status-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px 12px;
	align-items: center;
	padding: 12px 14px;
	border: 1px solid #e5eefb;
	border-radius: 17px;
	background: #f8fbff;
}

.mjap-status-item strong {
	font-size: 14px;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-status-item small {
	grid-column: 1 / -1;
	color: var(--mjap-muted);
	line-height: 1.8;
}

.mjap-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 29px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 950;
	background: #eef5ff;
	color: var(--mjap-primary);
}

.mjap-status--done { background: #ecfff7; color: #13a978; }
.mjap-status--rejected { background: #fff1f1; color: #d64c4c; }
.mjap-status--in_progress { background: #fff8e4; color: #b27b00; }

.mjap-form {
	padding: 20px;
}

.mjap-section-head--inside {
	padding: 0 2px 6px;
}

.mjap-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.mjap-addon-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 286px;
	padding: 14px;
	border: 1px solid #e5eefb;
	border-radius: 24px;
	background: linear-gradient(180deg, #fff, #f9fbff);
	cursor: pointer;
	transition: .18s ease;
	overflow: hidden;
}

.mjap-addon-card:hover,
.mjap-addon-card.is-selected {
	border-color: var(--mjap-primary);
	background: #f7fbff;
	box-shadow: 0 16px 36px rgba(4, 103, 242, .11);
	transform: translateY(-2px);
}

.mjap-addon-card input[type="checkbox"] {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 3;
	width: 21px;
	height: 21px;
	accent-color: var(--mjap-primary);
}

.mjap-addon-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 128px;
	border-radius: 20px;
	background:
		linear-gradient(135deg, rgba(4,103,242,.06), rgba(255,255,255,.72)),
		#f1f5fb;
	border: 1px solid #e5eefb;
	overflow: hidden;
}

.mjap-addon-visual:before,
.mjap-addon-visual:after {
	content: "";
	position: absolute;
	border-radius: 16px;
	background: rgba(147, 162, 188, .28);
	filter: blur(.1px);
}

.mjap-addon-visual:before {
	width: 62%;
	height: 14px;
	top: 32px;
	right: 24px;
}

.mjap-addon-visual:after {
	width: 42%;
	height: 48px;
	bottom: 24px;
	left: 24px;
}

.mjap-addon-visual > i {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--mjap-primary), #4c98ff);
	color: #fff;
	font-size: 24px;
	box-shadow: 0 16px 32px rgba(4,103,242,.18);
}

.mjap-addon-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mjap-addon-visual span {
	position: absolute;
	top: 11px;
	right: 11px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 27px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #dfe8f7;
	color: var(--mjap-primary);
	font-size: 11px;
	font-weight: 950;
}

.mjap-addon-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 0;
}

.mjap-addon-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.mjap-addon-title-row strong {
	padding: 0;
	font-size: 15px;
	font-weight: 950;
	line-height: 1.65;
	color: var(--mjap-ink);
}

.mjap-addon-title-row > i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 9px;
	background: #edf3fb;
	color: #b4c0d2;
	font-size: 11px;
}

.mjap-addon-card.is-selected .mjap-addon-title-row > i {
	background: var(--mjap-primary);
	color: #fff;
}

.mjap-addon-card p {
	grid-column: auto;
	margin: 0;
	color: var(--mjap-muted);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.9;
}

.mjap-addon-foot {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
	margin-top: auto;
}

.mjap-addon-foot span,
.mjap-addon-foot em,
.mjap-addon-foot b,
.mjap-addon-state {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 29px;
	padding: 5px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-style: normal;
	font-weight: 950;
}

.mjap-addon-foot span {
	background: #f4f7fb;
	color: var(--mjap-muted);
}

.mjap-addon-foot b {
	background: #eef5ff;
	color: var(--mjap-primary);
}

.mjap-addon-foot em {
	background: #fff8e6;
	color: #a66d00;
}

.mjap-addon-state {
	width: fit-content;
	background: #eef5ff;
	color: var(--mjap-primary);
}

.mjap-addon-card--urgent .mjap-addon-visual > i { background: linear-gradient(135deg, #f97316, #ffb347); }
.mjap-addon-card--featured .mjap-addon-visual > i { background: linear-gradient(135deg, #0467f2, #8bbcff); }
.mjap-addon-card--confidential .mjap-addon-visual > i { background: linear-gradient(135deg, #374151, #667085); }
.mjap-addon-card--telegram .mjap-addon-visual > i { background: linear-gradient(135deg, #229ed9, #56c6ff); }
.mjap-addon-card--linkedin .mjap-addon-visual > i { background: linear-gradient(135deg, #0a66c2, #5ba9f2); }
.mjap-addon-card--bump .mjap-addon-visual > i { background: linear-gradient(135deg, #10b981, #7dd3a5); }

.mjap-addon-card.is-disabled {
	opacity: .68;
	cursor: not-allowed;
}

.mjap-live-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 17px;
	padding: 14px 16px;
	border-radius: 18px;
	background: #f6f9fe;
	border: 1px solid #e5eefb;
	font-weight: 950;
	color: var(--mjap-text);
}

.mjap-live-total strong {
	color: var(--mjap-primary);
}

.mjap-note {
	display: block;
	margin: 18px 0;
}

.mjap-note span {
	display: block;
	margin-bottom: 8px;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-note textarea {
	width: 100%;
	border: 1px solid #e5eefb;
	border-radius: 18px;
	background: #f8fbff;
	padding: 14px;
	color: var(--mjap-text);
	outline: none;
	line-height: 1.9;
}

.mjap-note textarea:focus {
	border-color: var(--mjap-primary);
	box-shadow: 0 0 0 4px rgba(4, 103, 242, .08);
}

.mjap-empty,
.mjap-login-box,
.mjap-notice {
	padding: 20px;
	color: var(--mjap-muted);
	font-weight: 850;
	line-height: 1.9;
}

.mjap-empty--small {
	margin-bottom: 18px;
}

.mjap-notice--success {
	border-color: #bfe8d4;
	background: #effcf4;
	color: #15966a;
	margin-bottom: 18px;
}

.mjap-notice--warning {
	border-color: #ffe0a3;
	background: #fff9e8;
	color: #9a6500;
	margin-bottom: 18px;
}

.mjap-addon-card.is-verification-locked {
	overflow: hidden;
	cursor: not-allowed;
	opacity: 1;
}

.mjap-addon-card.is-verification-locked > *:not(.mjap-lock-overlay) {
	filter: blur(3px);
	opacity: .38;
	pointer-events: none;
}

.mjap-lock-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(255, 255, 255, .74);
	backdrop-filter: blur(2px);
	text-align: center;
}

.mjap-lock-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	max-width: 260px;
	color: #4b5b72;
}

.mjap-lock-box i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(18, 35, 60, .16);
	color: #364559;
}

.mjap-lock-box strong {
	padding-left: 0;
	color: #ef4444;
	font-weight: 950;
}

.mjap-lock-box small {
	font-size: 12px;
	line-height: 1.8;
	font-weight: 800;
}

.mjap-lock-box a {
	font-size: 12px;
	font-weight: 950;
	color: var(--mjap-text) !important;
}

body.minejobs-dashboard-job-addons-page .mjap-page,
body.minejobs-dashboard-addons-page .mjap-page {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	padding: 0;
}

body.minejobs-dashboard-job-addons-page .mjap-hero,
body.minejobs-dashboard-addons-page .mjap-hero {
	margin-top: 0;
}

.mjap-sms-addon-panel {
	margin-top: 24px;
}

body.minejobs-dashboard-job-addons-page .mjap-sms-addon-panel .mj-targeted-addon-head,
body.minejobs-dashboard-addons-page .mjap-sms-addon-panel .mj-targeted-addon-head,
.mjap-sms-addon-panel .mj-targeted-addon-head {
	border: 1px solid var(--mjap-border);
	border-radius: 26px;
	background: linear-gradient(135deg, #fff, #f8fbff);
	padding: 20px;
	margin: 0 0 14px;
	box-shadow: var(--mjap-shadow-soft);
}

body.minejobs-dashboard-job-addons-page .mjap-sms-addon-panel .mj-targeted-campaign-form,
body.minejobs-dashboard-addons-page .mjap-sms-addon-panel .mj-targeted-campaign-form,
.mjap-sms-addon-panel .mj-targeted-campaign-form {
	border-color: var(--mjap-border);
	border-radius: 26px;
	box-shadow: var(--mjap-shadow-soft);
}

@media  (max-width: 1100px) {
	.mjap-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.mjap-method-row {
		grid-template-columns: 58px minmax(0, 1fr) 110px;
	}
	.mjap-method-row b {
		grid-column: 2 / -1;
		justify-content: flex-start;
		width: fit-content;
	}
}

@media  (max-width: 900px) {
	.mjap-layout,
	.mjap-grid {
		grid-template-columns: 1fr;
	}
	.mjap-jobs {
		position: relative;
		top: auto;
	}
	.mjap-hero {
		grid-template-columns: 72px minmax(0, 1fr);
	}
	.mjap-hero__status {
		grid-column: 1 / -1;
	}
}

@media  (max-width: 640px) {
	.mjap-page { margin: 18px auto; }
	.mjap-hero { grid-template-columns: 1fr; padding: 22px; border-radius: 25px; }
	.mjap-hero__icon { width: 66px; height: 66px; border-radius: 22px; }
	.mjap-selected-job { align-items: flex-start; flex-direction: column; }
	.mjap-selected-job a,
	.mjap-submit { width: 100%; }
	.mjap-method-row { grid-template-columns: 54px minmax(0, 1fr); }
	.mjap-method-row em,
	.mjap-method-row b { grid-column: 2; justify-content: flex-start; width: fit-content; }
	.mjap-addon-card { min-height: auto; }
}

/* MineJobs add-ons monetization redesign: tabbed layout, no image cards, application channel sync */
.mjap-tabs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin: 0 0 18px;
	padding: 8px;
	border: 1px solid var(--mjap-border);
	border-radius: 24px;
	background: #f7fbff;
}

.mjap-tab-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 10px 14px;
	border: 1px solid transparent;
	border-radius: 18px;
	color: #60718c !important;
	font-weight: 950;
	transition: .18s ease;
}

.mjap-tab-link i {
	font-size: 17px;
}

.mjap-tab-link:hover,
.mjap-tab-link.is-active {
	background: #fff;
	border-color: #d8e5f6;
	color: var(--mjap-primary) !important;
	box-shadow: 0 12px 28px rgba(4, 103, 242, .08);
}

.mjap-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
	padding: 18px;
	border: 1px solid #e1ebf8;
	border-radius: 22px;
	background: linear-gradient(135deg, #fff, #f8fbff);
}

.mjap-panel-head > div > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 6px;
	color: var(--mjap-primary);
	font-size: 13px;
	font-weight: 950;
}

.mjap-panel-head h3 {
	margin: 0 0 5px;
	font-size: 21px;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-panel-head p {
	margin: 0;
	color: var(--mjap-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.9;
}

.mjap-panel-head > strong {
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 7px 12px;
	border-radius: 999px;
	background: #ecfff7;
	color: #15966a;
	font-size: 12px;
	font-weight: 950;
}

.mjap-methods--compact {
	padding: 18px;
}

.mjap-flow-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.mjap-flow-cards span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	border: 1px solid #e2ecf8;
	border-radius: 16px;
	background: #fff;
	color: var(--mjap-text);
	font-size: 13px;
	font-weight: 950;
}

.mjap-flow-cards i {
	color: var(--mjap-primary);
}

.mjap-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mjap-addon-card {
	min-height: 0;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 14px;
	padding: 16px;
	border-radius: 22px;
	background: #fff;
}

.mjap-addon-card input[type="checkbox"] {
	top: 14px;
	left: 14px;
}

.mjap-addon-visual {
	min-height: 74px;
	height: 74px;
	width: 74px;
	border-radius: 22px;
	background: #f5f9ff;
}

.mjap-addon-visual:before,
.mjap-addon-visual:after,
.mjap-addon-visual img {
	display: none !important;
}

.mjap-addon-visual > i {
	width: 52px;
	height: 52px;
	border-radius: 18px;
	font-size: 21px;
}

.mjap-addon-visual span {
	top: auto;
	right: auto;
	bottom: -9px;
	left: 50%;
	transform: translateX(-50%);
	min-height: 22px;
	font-size: 10px;
	white-space: nowrap;
}

.mjap-addon-body {
	min-width: 0;
}

.mjap-addon-title-row strong {
	font-size: 16px;
}

.mjap-channel-panel,
.mjap-sms-tab-panel {
	border: 1px solid var(--mjap-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: var(--mjap-shadow-soft);
	padding: 20px;
}

.mjap-channel-form {
	margin: 0;
}

.mjap-channel-list {
	display: grid;
	gap: 13px;
}

.mjap-channel-card {
	position: relative;
	display: grid;
	grid-template-columns: 42px 62px minmax(0, 1fr);
	gap: 14px;
	align-items: stretch;
	padding: 14px;
	border: 1px solid #e1ebf8;
	border-radius: 22px;
	background: linear-gradient(135deg, #fff, #fbfdff);
	transition: .18s ease;
	overflow: hidden;
}

.mjap-channel-card:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 7px;
	background: var(--mjap-channel-color);
	opacity: .2;
}

.mjap-channel-card:hover,
.mjap-channel-card.is-active {
	border-color: color-mix(in srgb, var(--mjap-channel-color) 34%, #dfe8f7);
	box-shadow: 0 14px 30px rgba(18, 52, 104, .08);
}

.mjap-channel-card.is-active:before {
	opacity: 1;
}

.mjap-channel-card__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	cursor: pointer;
}

.mjap-channel-card__toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mjap-channel-card__toggle span {
	width: 26px;
	height: 26px;
	border: 2px solid #d4deec;
	border-radius: 9px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.mjap-channel-card__toggle input:checked + span {
	border-color: var(--mjap-channel-color);
	background: var(--mjap-channel-color);
}

.mjap-channel-card__toggle input:checked + span:after {
	content: "";
	font-family: "Font Awesome 7 Pro";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 12px;
}

.mjap-channel-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 20px;
	background: var(--mjap-channel-bg);
	color: var(--mjap-channel-color);
	font-size: 25px;
	border: 1px solid rgba(15, 23, 42, .04);
}

.mjap-channel-card__body {
	min-width: 0;
}

.mjap-channel-card__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 5px;
}

.mjap-channel-card__title strong {
	font-size: 16px;
	font-weight: 950;
	color: var(--mjap-ink);
}

.mjap-channel-card__title em {
	font-style: normal;
	white-space: nowrap;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--mjap-channel-bg);
	color: var(--mjap-channel-color);
	font-size: 11px;
	font-weight: 950;
}

.mjap-channel-card__body p {
	margin: 0 0 12px;
	color: var(--mjap-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.9;
}

.mjap-channel-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.mjap-channel-fields label {
	display: block;
	margin: 0;
}

.mjap-channel-fields label span {
	display: block;
	margin-bottom: 6px;
	color: #5c6f8a;
	font-size: 11px;
	font-weight: 950;
}

.mjap-channel-fields input,
.mjap-channel-form textarea {
	width: 100%;
	min-height: 44px;
	border: 1px solid #dfe8f7;
	border-radius: 15px;
	background: #f8fbff;
	padding: 10px 12px;
	color: var(--mjap-ink);
	font-weight: 850;
	outline: none;
	box-shadow: none;
}

.mjap-channel-fields input:focus,
.mjap-channel-form textarea:focus {
	border-color: var(--mjap-channel-color, var(--mjap-primary));
	box-shadow: 0 0 0 4px rgba(4, 103, 242, .08);
	background: #fff;
}

.mjap-channel-system-note {
	display: flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 9px 12px;
	border-radius: 999px;
	background: #eef6ff;
	color: #1473ff;
	font-size: 12px;
	font-weight: 950;
}

.mjap-note--compact {
	margin: 16px 0 0;
}

.mjap-channel-submitbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 16px;
	padding: 14px;
	border: 1px solid #e1ebf8;
	border-radius: 20px;
	background: #f8fbff;
}

.mjap-channel-submitbar strong,
.mjap-channel-submitbar span {
	display: block;
}

.mjap-channel-submitbar strong {
	color: var(--mjap-ink);
	font-weight: 950;
	margin-bottom: 4px;
}

.mjap-channel-submitbar span {
	color: var(--mjap-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.8;
}

.mjap-sms-tab-panel .mj-targeted-addon-head {
	display: none !important;
}

.mjap-sms-tab-panel .mj-targeted-addon-wrap,
.mjap-sms-tab-panel .mj-targeted-addon-wrap--portal {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

.mjap-sms-tab-panel .mj-targeted-campaign-form,
.mjap-sms-tab-panel .mj-targeted-user-campaigns {
	border: 1px solid #e1ebf8 !important;
	border-radius: 22px !important;
	background: #fff !important;
	box-shadow: 0 12px 30px rgba(18,52,104,.06) !important;
}

@supports  not (color: color-mix(in srgb, #fff, #000)) {
	.mjap-channel-card:hover,
	.mjap-channel-card.is-active { border-color: var(--mjap-channel-color); }
}

@media  (max-width: 1100px) {
	.mjap-grid,
	.mjap-channel-fields { grid-template-columns: 1fr; }
}

@media  (max-width: 780px) {
	.mjap-tabs,
	.mjap-flow-cards { grid-template-columns: 1fr; }
	.mjap-panel-head,
	.mjap-channel-submitbar { flex-direction: column; align-items: stretch; }
	.mjap-channel-card { grid-template-columns: 36px 54px minmax(0, 1fr); gap: 10px; }
	.mjap-channel-card__icon { width: 54px; height: 54px; border-radius: 17px; }
	.mjap-addon-card { grid-template-columns: 1fr; }
	.mjap-addon-visual { width: 100%; }
}

/* MineJobs 2026-07: high-conversion add-ons panel, responsive tabs and official Bale icon */
.mjap-tabs {
	position: relative;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 12px;
	margin-bottom: 24px;
	border-radius: 30px;
	background: linear-gradient(135deg, #eef6ff, #fbfdff);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(18,52,104,.07);
}

.mjap-tab-link {
	justify-content: flex-start;
	min-height: 76px;
	padding: 14px 16px;
	border-radius: 22px;
	background: rgba(255,255,255,.55);
}

.mjap-tab-link > i {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e1ebf8;
	color: var(--mjap-primary);
	font-size: 18px;
}

.mjap-tab-link > span {
	display: grid;
	gap: 2px;
	line-height: 1.6;
}

.mjap-tab-link strong {
	font-size: 14px;
	font-weight: 950;
	color: inherit;
}

.mjap-tab-link small {
	font-size: 11px;
	font-weight: 850;
	color: #8190a8;
}

.mjap-tab-link.is-active {
	border-color: rgba(4,103,242,.24);
	background: #fff;
	transform: translateY(-1px);
}

.mjap-tab-link.is-active > i {
	background: linear-gradient(135deg, var(--mjap-primary), var(--mjap-primary-2));
	border-color: transparent;
	color: #fff;
	box-shadow: 0 14px 26px rgba(4,103,242,.18);
}

.mjap-grid {
	grid-template-columns: 1fr !important;
	gap: 13px;
}

.mjap-addon-card {
	grid-template-columns: 82px minmax(0, 1fr) auto;
	align-items: center;
	min-height: 112px;
	padding: 16px 18px 16px 16px;
	border-radius: 24px;
	background: linear-gradient(135deg, #fff 0%, #fbfdff 100%);
}

.mjap-addon-card:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 7px;
	background: var(--mjap-primary);
	opacity: .18;
	transition: .18s ease;
}

.mjap-addon-card.is-selected:before,
.mjap-addon-card:hover:before {
	opacity: 1;
}

.mjap-addon-card input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mjap-addon-switch {
	order: 3;
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 104px;
	min-height: 42px;
	padding: 8px 13px;
	border: 1px solid #dce7f6;
	border-radius: 999px;
	background: #f7fbff;
	color: #74849c;
	font-size: 12px;
	font-weight: 950;
}

.mjap-addon-switch i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #e7eef8;
	color: #a8b6c8;
	font-size: 10px;
}

.mjap-addon-card.is-selected .mjap-addon-switch {
	border-color: rgba(4,103,242,.28);
	background: #eef6ff;
	color: var(--mjap-primary);
}

.mjap-addon-card.is-selected .mjap-addon-switch i {
	background: var(--mjap-primary);
	color: #fff;
}

.mjap-addon-visual {
	order: 1;
	width: 74px;
	height: 74px;
	min-height: 74px;
	background: linear-gradient(135deg, #f6f9fe, #fff);
}

.mjap-addon-body {
	order: 2;
}

.mjap-addon-title-row {
	justify-content: flex-start;
}

.mjap-addon-title-row > i {
	display: none;
}

.mjap-addon-foot {
	margin-top: 5px;
}

.mjap-addon-card--urgent:before { background: #f97316; }
.mjap-addon-card--featured:before { background: #0467f2; }
.mjap-addon-card--bump:before { background: #10b981; }
.mjap-addon-card--confidential:before { background: #374151; }
.mjap-addon-card--telegram:before { background: #229ed9; }
.mjap-addon-card--linkedin:before { background: #0a66c2; }
.mjap-addon-card--manual:before { background: #7c3aed; }

.mjap-channel-card__title mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 25px;
	padding: 4px 9px;
	border-radius: 999px;
	background: #f4ecff;
	color: #7c3aed;
	font-size: 11px;
	font-weight: 950;
}

.mjap-channel-card__toggle span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	transition: .18s ease;
}

.mjap-channel-card__toggle input:checked + span {
	box-shadow: 0 10px 20px color-mix(in srgb, var(--mjap-channel-color) 18%, transparent);
}

.mjap-channel-card__toggle input:disabled + span {
	opacity: .9;
	cursor: default;
}

.mjap-channel-card__icon img.mjap-bale-icon,
.mjap-bale-icon {
	width: 32px;
	height: 32px;
	display: block;
	object-fit: contain;
}

.mjap-channel-card--bale {
	border-color: color-mix(in srgb, #00C493 22%, var(--mjap-border));
}

.mjap-channel-card--bale .mjap-channel-card__icon {
	background: #E8FFF8;
	border-color: rgba(0, 196, 147, 0.28);
	box-shadow: 0 12px 24px rgba(0, 196, 147, 0.12);
}

@media  (max-width: 980px) {
	.mjap-tabs {
		grid-template-columns: 1fr;
		border-radius: 24px;
	}
	.mjap-tab-link {
		min-height: 66px;
	}
}

@media  (max-width: 760px) {
	.mjap-page {
		margin: 12px auto;
	}
	.mjap-main,
	.mjap-channel-panel,
	.mjap-sms-tab-panel,
	.mjap-form,
	.mjap-methods,
	.mjap-status-box {
		padding: 15px;
		border-radius: 22px;
	}
	.mjap-addon-card {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 12px;
		padding: 14px;
	}
	.mjap-addon-visual {
		width: 62px;
		height: 62px;
		min-height: 62px;
		border-radius: 19px;
	}
	.mjap-addon-visual > i {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	.mjap-addon-switch {
		grid-column: 1 / -1;
		order: 4;
		width: 100%;
		min-height: 40px;
	}
	.mjap-channel-card {
		grid-template-columns: 40px minmax(0, 1fr);
	}
	.mjap-channel-card__icon {
		grid-row: 1;
		width: 52px;
		height: 52px;
	}
	.mjap-channel-card__body {
		grid-column: 1 / -1;
	}
	.mjap-channel-card__title {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
}


/* MineJobs 2026-07: official Bale color in application method tab */
.mjap-channel-card--bale.is-active,
.mjap-channel-card--bale:hover {
	background: linear-gradient(135deg, rgba(0, 196, 147, 0.10), #fff 58%);
}
.mjap-channel-card--bale .mjap-channel-card__title strong,
.mjap-channel-card--bale .mjap-channel-card__title em {
	color: #008A68;
}

/* Package free add-on quota badges */
.mjap-addon-card.has-package-credit {
	border-color: rgba(16, 185, 129, .45);
	background: linear-gradient(135deg, #f0fff8, #ffffff 58%);
	box-shadow: 0 18px 46px rgba(16, 185, 129, .10);
}

.mjap-addon-card.has-package-credit:after {
	content: "هدیه پکیج";
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 27px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #10b981;
	color: #fff;
	font-size: 11px;
	font-weight: 950;
	box-shadow: 0 9px 18px rgba(16, 185, 129, .20);
}

.mjap-addon-foot b.mjap-free-credit-label {
	background: #dcfce7;
	color: #047857;
}

.mjap-package-credit-note {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	max-width: 100%;
	margin-top: 8px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(16, 185, 129, .10);
	color: #047857;
	font-size: 11px;
	font-weight: 850;
	line-height: 1.8;
}

.mjap-package-credit-note i {
	font-size: 12px;
}

@media  (max-width: 640px) {
	.mjap-addon-card.has-package-credit:after {
		position: static;
		align-self: flex-start;
		order: 0;
		margin: 0 0 4px;
	}
}

/* MineJobs 2026-07: application methods UX polish, official Bale/Eitaa colors */
body.minejobs-dashboard-job-addons-page .mjap-page,
body.minejobs-dashboard-addons-page .mjap-page,
.mjap-page {
	max-width: 1360px;
}

.mjap-layout {
	grid-template-columns: 304px minmax(0, 1fr);
}

.mjap-selected-job {
	flex-wrap: nowrap;
}

.mjap-selected-job__title,
.mjap-selected-job > div {
	min-width: 0;
	flex: 1 1 auto;
}

.mjap-selected-job h2 {
	font-size: clamp(18px, 2vw, 25px);
}

.mjap-selected-job a,
.mjap-submit {
	white-space: nowrap;
	flex: 0 0 auto;
}

.mjap-tabs {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mjap-tab-link {
	min-width: 0;
	white-space: nowrap;
}

.mjap-tab-link > span {
	min-width: 0;
}

.mjap-tab-link strong,
.mjap-tab-link small {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mjap-channel-card {
	--mjap-current-color: #94a3b8;
	--mjap-current-bg: #f5f8fc;
	border-color: #e3ebf6 !important;
	background: linear-gradient(135deg, #fff 0%, #fbfdff 100%) !important;
}

.mjap-channel-card:before {
	background: #cbd5e1 !important;
	opacity: .45 !important;
}

.mjap-channel-card.is-active {
	--mjap-current-color: var(--mjap-channel-color);
	--mjap-current-bg: var(--mjap-channel-bg);
	border-color: color-mix(in srgb, var(--mjap-channel-color) 32%, #dce8fa) !important;
	background: linear-gradient(135deg, color-mix(in srgb, var(--mjap-channel-bg) 38%, #fff) 0%, #fff 62%) !important;
}

.mjap-channel-card.is-active:before {
	background: var(--mjap-channel-color) !important;
	opacity: 1 !important;
}

.mjap-channel-card__icon {
	background: var(--mjap-current-bg) !important;
	color: var(--mjap-current-color) !important;
	border-color: color-mix(in srgb, var(--mjap-current-color) 18%, #e4edf9) !important;
	box-shadow: none !important;
}

.mjap-channel-card.is-active .mjap-channel-card__icon {
	box-shadow: 0 12px 26px color-mix(in srgb, var(--mjap-channel-color) 14%, transparent) !important;
}

.mjap-channel-card__title strong {
	color: #15243a;
}

.mjap-channel-card__title em {
	font-size: 13px;
	font-weight: 950;
	padding: 7px 13px;
	background: #eef3f8;
	color: #64748b;
	border: 1px solid #e2e8f0;
}

.mjap-channel-card.is-active .mjap-channel-card__title em {
	background: var(--mjap-current-bg);
	color: var(--mjap-current-color);
	border-color: color-mix(in srgb, var(--mjap-current-color) 20%, #e4edf9);
}

.mjap-channel-card__toggle span {
	background: #fff;
	border-color: #d8e1ee;
	color: #94a3b8;
}

.mjap-channel-card__toggle input:checked + span {
	border-color: var(--mjap-channel-color);
	background: var(--mjap-channel-color);
	color: #fff;
}

.mjap-channel-card__toggle input:checked + span:after {
	content: "✓" !important;
	font-family: inherit !important;
	font-size: 17px;
	font-weight: 950;
	line-height: 1;
}

.mjap-channel-fields input:disabled {
	cursor: not-allowed;
	background: #eef3f8;
	color: #97a6b8;
	border-color: #e1e8f1;
	box-shadow: none;
}

.mjap-channel-fields input:disabled::placeholder {
	color: #a8b5c6;
}

.mjap-channel-card.is-active .mjap-channel-fields input:not(:disabled) {
	background: #fff;
}

.mjap-channel-card__icon img.mjap-bale-icon,
.mjap-bale-icon,
.mjap-channel-card__icon img.mjap-eitaa-icon,
.mjap-eitaa-icon,
.mjap-channel-card__icon img.mjap-rubika-icon,
.mjap-rubika-icon {
	width: 32px;
	height: 32px;
	display: block;
	object-fit: contain;
}

.mjap-rubika-icon-wrap {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mjap-rubika-icon-wrap .mjap-rubika-icon--active {
	display: none;
}

.mjap-channel-card--rubika.is-active .mjap-rubika-icon-wrap .mjap-rubika-icon--inactive {
	display: none;
}

.mjap-channel-card--rubika.is-active .mjap-rubika-icon-wrap .mjap-rubika-icon--active {
	display: block;
}

.mjap-channel-card--bale {
	--mjap-channel-color: #00C493 !important;
	--mjap-channel-bg: #E8FFF8 !important;
}

.mjap-channel-card--bale.is-active .mjap-channel-card__title strong,
.mjap-channel-card--bale.is-active .mjap-channel-card__title em {
	color: #008A68;
}

.mjap-channel-card--eitaa {
	--mjap-channel-color: #f08022 !important;
	--mjap-channel-bg: #FFF4E9 !important;
}

.mjap-channel-card--eitaa.is-active .mjap-channel-card__title strong,
.mjap-channel-card--eitaa.is-active .mjap-channel-card__title em {
	color: #B95708;
}

.mjap-channel-card--rubika {
	--mjap-channel-color: #4C3683 !important;
	--mjap-channel-bg: #F3EEFF !important;
}

.mjap-channel-card--rubika.is-active .mjap-channel-card__title strong,
.mjap-channel-card--rubika.is-active .mjap-channel-card__title em {
	color: #3F2E6B;
}

.mjap-channel-card--notification_email {
	--mjap-channel-color: #2563EB !important;
	--mjap-channel-bg: #EEF5FF !important;
}

@media  (max-width: 1100px) {
	.mjap-layout {
		grid-template-columns: 1fr;
	}
}

@media  (max-width: 900px) {
	.mjap-selected-job {
		flex-wrap: wrap;
	}
	.mjap-selected-job a {
		width: auto;
	}
}

@media  (max-width: 760px) {
	.mjap-tabs {
		grid-template-columns: 1fr;
	}
	.mjap-tab-link {
		white-space: normal;
	}
	.mjap-tab-link strong,
	.mjap-tab-link small {
		white-space: normal;
		overflow: visible;
	}
	.mjap-selected-job a,
	.mjap-submit {
		width: 100%;
	}
}

/* MineJobs 2026-07: render selection ticks without icon-font dependency */
.mjap-addon-switch i {
	font-family: inherit !important;
	font-size: 0 !important;
}

.mjap-addon-switch i:before {
	content: "✓";
	font-size: 14px;
	font-weight: 950;
	line-height: 1;
}

/* MineJobs 2026-07-01: instant tabs, wider portal, fixed brand icons and embedded edit tab */
body.minejobs-dashboard-addons-page .mjap-page,
body.minejobs-dashboard-job-addons-page .mjap-page,
.mjap-page {
  max-width: 1480px !important;
}

.mjap-layout {
  grid-template-columns: 320px minmax(0, 1fr) !important;
  gap: 34px !important;
}

.mjap-layout--single {
  grid-template-columns: minmax(0, 1fr) !important;
}

.mjap-page--embedded {
  max-width: none !important;
  margin: 26px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.mjap-page--embedded .mjap-main,
.mjap-page--embedded .mjap-selected-job,
.mjap-page--embedded .mjap-channel-panel,
.mjap-page--embedded .mjap-form--pro,
.mjap-page--embedded .mjap-methods,
.mjap-page--embedded .mjap-status-box,
.mjap-page--embedded .mjap-sms-tab-panel {
  box-shadow: none !important;
}

.mjap-edit-upgrade-tab {
  direction: rtl;
  margin: 34px 0 0;
  padding: 24px;
  border: 1px solid #dbe8f8;
  border-radius: 30px;
  background: linear-gradient(145deg, #f8fbff 0%, #fff 62%);
}

.mjap-edit-upgrade-tab__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mjap-edit-upgrade-tab__head span {
  color: #1473ff;
  font-weight: 950;
}

.mjap-edit-upgrade-tab__head strong {
  color: #06172d;
  font-size: 22px;
  font-weight: 1000;
}

.mjap-edit-upgrade-tab__head small {
  flex: 1 1 100%;
  color: #71819a;
  font-weight: 800;
}

.mjap-tab-panel {
  display: none;
}

.mjap-tab-panel.is-active {
  display: block;
}

.mjap-tabs {
  grid-template-columns: repeat(3, minmax(230px, 1fr)) !important;
  align-items: stretch;
}

.mjap-tab-link {
  min-height: 82px;
  padding: 16px 18px !important;
}

.mjap-tab-link span strong,
.mjap-tab-link span small {
  white-space: nowrap !important;
}

.mjap-selected-job {
  gap: 18px !important;
}

.mjap-selected-job__actions a,
.mjap-selected-job a {
  min-width: 172px;
  justify-content: center;
}

.mjap-channel-brand-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  position: relative;
}

.mjap-brand-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.mjap-brand-icon--active {
  display: none;
}

.mjap-channel-card.is-active .mjap-brand-icon--inactive {
  display: none;
}

.mjap-channel-card.is-active .mjap-brand-icon--active {
  display: block;
}

.mjap-channel-card__icon img.mjap-bale-icon,
.mjap-bale-icon,
.mjap-channel-card__icon img.mjap-eitaa-icon,
.mjap-eitaa-icon,
.mjap-channel-card__icon img.mjap-rubika-icon,
.mjap-rubika-icon,
.mjap-rubika-icon-wrap {
  display: none !important;
}

.mjap-channel-card__toggle span:after {
  content: "" !important;
}

.mjap-channel-card__toggle input:checked + span:after {
  content: "✓" !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 1000;
}

.mjap-channel-card__title em,
.mjap-addon-foot b,
.mjap-live-total strong {
  font-size: 16px !important;
  letter-spacing: 0 !important;
}

.mjap-channel-card--notification_email .mjap-channel-card__body p {
  max-width: 640px;
}

.mjap-lock-box b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 115, 255, .10);
  color: #1473ff;
  font-size: 12px;
  font-weight: 950;
}

.mjap-lock-box strong {
  margin-top: 4px;
}

@media  (max-width: 1180px) {
  .mjap-layout {
    grid-template-columns: 1fr !important;
  }
  .mjap-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media  (max-width: 760px) {
  .mjap-tabs {
    grid-template-columns: 1fr !important;
  }
  .mjap-tab-link span strong,
  .mjap-tab-link span small {
    white-space: normal !important;
  }
  .mjap-edit-upgrade-tab {
    padding: 16px;
    border-radius: 22px;
  }
}

/* MineJobs v7: safe add-ons endpoint layout.
   This block deliberately avoids dashboard shell/root layout elements. */
body.minejobs-dashboard-addons-page .mjap-page.mjap-page--pro:not(.mjap-page--embedded),
body.minejobs-dashboard-job-addons-page .mjap-page.mjap-page--pro:not(.mjap-page--embedded) {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

body.minejobs-dashboard-addons-page .mjap-layout:not(.mjap-layout--single),
body.minejobs-dashboard-job-addons-page .mjap-layout:not(.mjap-layout--single) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 22px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

body.minejobs-dashboard-addons-page .mjap-main,
body.minejobs-dashboard-job-addons-page .mjap-main {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

body.minejobs-dashboard-addons-page .mjap-jobs,
body.minejobs-dashboard-job-addons-page .mjap-jobs {
  position: relative !important;
  top: auto !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 12px !important;
  padding: 18px !important;
  margin: 0 !important;
  overflow: visible !important;
  align-items: stretch !important;
}

body.minejobs-dashboard-addons-page .mjap-jobs h3,
body.minejobs-dashboard-job-addons-page .mjap-jobs h3 {
  grid-column: 1 / -1 !important;
  margin: 0 0 4px !important;
  text-align: right !important;
}

body.minejobs-dashboard-addons-page .mjap-job-switch-form,
body.minejobs-dashboard-job-addons-page .mjap-job-switch-form {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
}

body.minejobs-dashboard-addons-page button.mjap-job-link,
body.minejobs-dashboard-job-addons-page button.mjap-job-link,
body.minejobs-dashboard-addons-page .mjap-job-switch-form .mjap-job-link,
body.minejobs-dashboard-job-addons-page .mjap-job-switch-form .mjap-job-link {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 98px !important;
  padding: 16px 18px !important;
  margin: 0 !important;
  border: 1px solid #e3edf9 !important;
  border-radius: 18px !important;
  background: #f8fbff !important;
  color: var(--mjap-text) !important;
  font: inherit !important;
  line-height: 1.8 !important;
  text-align: right !important;
  box-shadow: none !important;
  cursor: pointer !important;
  outline: 0 !important;
  text-decoration: none !important;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

body.minejobs-dashboard-addons-page button.mjap-job-link:hover,
body.minejobs-dashboard-job-addons-page button.mjap-job-link:hover,
body.minejobs-dashboard-addons-page button.mjap-job-link.is-active,
body.minejobs-dashboard-job-addons-page button.mjap-job-link.is-active {
  border-color: var(--mjap-primary) !important;
  background: #f2f7ff !important;
  color: var(--mjap-text) !important;
  box-shadow: 0 12px 26px rgba(4, 103, 242, .08) !important;
  transform: translateY(-1px) !important;
}

body.minejobs-dashboard-addons-page button.mjap-job-link strong,
body.minejobs-dashboard-job-addons-page button.mjap-job-link strong {
  display: block !important;
  width: 100% !important;
  color: var(--mjap-ink) !important;
  font-weight: 950 !important;
  line-height: 1.8 !important;
  text-align: right !important;
}

body.minejobs-dashboard-addons-page button.mjap-job-link small,
body.minejobs-dashboard-job-addons-page button.mjap-job-link small {
  display: block !important;
  width: 100% !important;
  color: var(--mjap-muted) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  text-align: right !important;
}

body.minejobs-dashboard-addons-page button.mjap-tab-link,
body.minejobs-dashboard-job-addons-page button.mjap-tab-link {
  -webkit-appearance: none !important;
  appearance: none !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: var(--mjap-text) !important;
  font: inherit !important;
  cursor: pointer !important;
  text-align: center !important;
}

body.minejobs-dashboard-addons-page button.mjap-tab-link.is-active,
body.minejobs-dashboard-job-addons-page button.mjap-tab-link.is-active,
body.minejobs-dashboard-addons-page button.mjap-tab-link:hover,
body.minejobs-dashboard-job-addons-page button.mjap-tab-link:hover {
  background: #fff !important;
  border-color: rgba(20, 115, 255, .22) !important;
  color: var(--mjap-primary) !important;
}

body.minejobs-dashboard-addons-page .mjap-status-box:empty,
body.minejobs-dashboard-job-addons-page .mjap-status-box:empty,
body.minejobs-dashboard-addons-page .mjap-empty--small:empty,
body.minejobs-dashboard-job-addons-page .mjap-empty--small:empty {
  display: none !important;
}

.mjap-channel-card--notification_email .mjap-channel-card__title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.mjap-channel-card--notification_email .mjap-channel-card__title strong {
  order: 1 !important;
}

.mjap-channel-card--notification_email .mjap-channel-source-badge {
  order: 2 !important;
  margin: 0 !important;
}

.mjap-channel-card--notification_email .mjap-channel-card__title em {
  order: 3 !important;
  margin-inline-start: auto !important;
}

.mjap-sms-tab-panel,
.mjap-sms-tab-panel .mjap-panel-head,
.mjap-sms-tab-panel .mj-targeted-campaign-form__head,
.mjap-sms-tab-panel .mj-targeted-campaign-form__summary {
  text-align: center !important;
  justify-content: center !important;
}

.mjap-sms-tab-panel .mj-targeted-campaign-form label,
.mjap-sms-tab-panel .mj-targeted-campaign-form input,
.mjap-sms-tab-panel .mj-targeted-campaign-form select,
.mjap-sms-tab-panel .mj-targeted-campaign-form textarea {
  text-align: right !important;
}

@media  (max-width: 760px) {
  body.minejobs-dashboard-addons-page .mjap-jobs,
  body.minejobs-dashboard-job-addons-page .mjap-jobs {
    grid-template-columns: 1fr !important;
    padding: 14px !important;
  }
}

/* MineJobs 2026-07-01: focused add-ons tab polish.
   Only component internals are touched here; dashboard shell layout stays locked in minejobs-dashboard-shell-lock.css. */
body.minejobs-dashboard-addons-page .mjap-channel-card,
body.minejobs-dashboard-job-addons-page .mjap-channel-card {
  align-items: center !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card__toggle,
body.minejobs-dashboard-job-addons-page .mjap-channel-card__toggle,
body.minejobs-dashboard-addons-page .mjap-channel-card__icon,
body.minejobs-dashboard-job-addons-page .mjap-channel-card__icon {
  align-self: center !important;
  justify-self: center !important;
  margin: 0 !important;
  inset: auto !important;
  transform: none !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card__body,
body.minejobs-dashboard-job-addons-page .mjap-channel-card__body {
  align-self: center !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card:not(.is-active) .mjap-channel-card__title strong,
body.minejobs-dashboard-job-addons-page .mjap-channel-card:not(.is-active) .mjap-channel-card__title strong {
  color: #15243a !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card:not(.is-active) .mjap-channel-card__title em,
body.minejobs-dashboard-job-addons-page .mjap-channel-card:not(.is-active) .mjap-channel-card__title em {
  background: #eef3f8 !important;
  color: #64748b !important;
  border-color: #e1e8f1 !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card:not(.is-active) .mjap-channel-card__icon,
body.minejobs-dashboard-job-addons-page .mjap-channel-card:not(.is-active) .mjap-channel-card__icon {
  background: #f5f8fc !important;
  color: #94a3b8 !important;
  border-color: #e4edf9 !important;
  box-shadow: none !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-fields input:disabled,
body.minejobs-dashboard-addons-page .mjap-channel-fields input[disabled],
body.minejobs-dashboard-job-addons-page .mjap-channel-fields input:disabled,
body.minejobs-dashboard-job-addons-page .mjap-channel-fields input[disabled] {
  opacity: 1 !important;
  cursor: not-allowed !important;
  background: #eef3f8 !important;
  color: #97a6b8 !important;
  -webkit-text-fill-color: #97a6b8 !important;
  border-color: #dfe8f7 !important;
  box-shadow: none !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-fields input:disabled::placeholder,
body.minejobs-dashboard-addons-page .mjap-channel-fields input[disabled]::placeholder,
body.minejobs-dashboard-job-addons-page .mjap-channel-fields input:disabled::placeholder,
body.minejobs-dashboard-job-addons-page .mjap-channel-fields input[disabled]::placeholder {
  color: #a8b5c6 !important;
  opacity: 1 !important;
}

@media  (min-width: 901px) {
  body.minejobs-dashboard-addons-page .mjap-addon-card,
  body.minejobs-dashboard-job-addons-page .mjap-addon-card {
    --mjap-addon-meta-width: 280px;
    grid-template-columns: auto 82px minmax(0, 1fr) !important;
    align-items: center !important;
    min-height: 118px !important;
    padding: 18px 18px 18px calc(var(--mjap-addon-meta-width) + 24px) !important;
  }

  body.minejobs-dashboard-addons-page .mjap-addon-switch,
  body.minejobs-dashboard-job-addons-page .mjap-addon-switch {
    order: 1 !important;
    align-self: center !important;
    justify-self: start !important;
    margin: 0 !important;
  }

  body.minejobs-dashboard-addons-page .mjap-addon-visual,
  body.minejobs-dashboard-job-addons-page .mjap-addon-visual {
    order: 2 !important;
    align-self: center !important;
    justify-self: center !important;
    margin: 0 !important;
  }

  body.minejobs-dashboard-addons-page .mjap-addon-body,
  body.minejobs-dashboard-job-addons-page .mjap-addon-body {
    order: 3 !important;
    min-width: 0 !important;
    padding-inline-start: 2px !important;
  }

  body.minejobs-dashboard-addons-page .mjap-addon-foot,
  body.minejobs-dashboard-job-addons-page .mjap-addon-foot {
    position: absolute !important;
    top: 50% !important;
    left: 18px !important;
    width: var(--mjap-addon-meta-width) !important;
    max-width: calc(100% - 36px) !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
    text-align: center !important;
  }

  body.minejobs-dashboard-addons-page .mjap-addon-foot span,
  body.minejobs-dashboard-addons-page .mjap-addon-foot b,
  body.minejobs-dashboard-addons-page .mjap-addon-foot em,
  body.minejobs-dashboard-job-addons-page .mjap-addon-foot span,
  body.minejobs-dashboard-job-addons-page .mjap-addon-foot b,
  body.minejobs-dashboard-job-addons-page .mjap-addon-foot em {
    min-height: 34px !important;
    white-space: nowrap !important;
  }
}

body.minejobs-dashboard-addons-page .mjap-sms-tab-panel .mj-targeted-benefits,
body.minejobs-dashboard-job-addons-page .mjap-sms-tab-panel .mj-targeted-benefits {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.minejobs-dashboard-addons-page .mjap-sms-tab-panel .mj-targeted-benefits span,
body.minejobs-dashboard-job-addons-page .mjap-sms-tab-panel .mj-targeted-benefits span {
  justify-content: center !important;
  text-align: center !important;
}


/* MineJobs 2026-07-01: admin-controlled defaults/disabled states and brand icon sizing. */
body.minejobs-dashboard-addons-page .mjap-channel-card--telegram .mjap-channel-card__icon > i.fa-telegram,
body.minejobs-dashboard-job-addons-page .mjap-channel-card--telegram .mjap-channel-card__icon > i.fa-telegram,
body.minejobs-dashboard-addons-page .mjap-channel-card--whatsapp .mjap-channel-card__icon > i.fa-whatsapp,
body.minejobs-dashboard-job-addons-page .mjap-channel-card--whatsapp .mjap-channel-card__icon > i.fa-whatsapp,
.mjap-channel-card--telegram .mjap-channel-card__icon > i.fa-telegram,
.mjap-channel-card--whatsapp .mjap-channel-card__icon > i.fa-whatsapp {
  font-size: 32px !important;
  line-height: 1 !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card.is-admin-disabled,
body.minejobs-dashboard-job-addons-page .mjap-channel-card.is-admin-disabled,
.mjap-channel-card.is-admin-disabled,
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled,
.mjap-addon-card.is-admin-disabled {
  position: relative !important;
  overflow: hidden !important;
  cursor: not-allowed !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card.is-admin-disabled > *:not(.mjap-lock-overlay),
body.minejobs-dashboard-job-addons-page .mjap-channel-card.is-admin-disabled > *:not(.mjap-lock-overlay),
.mjap-channel-card.is-admin-disabled > *:not(.mjap-lock-overlay),
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled > *:not(.mjap-lock-overlay),
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled > *:not(.mjap-lock-overlay),
.mjap-addon-card.is-admin-disabled > *:not(.mjap-lock-overlay) {
  filter: blur(3px) !important;
  opacity: .38 !important;
  pointer-events: none !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card.is-admin-disabled .mjap-lock-overlay,
body.minejobs-dashboard-job-addons-page .mjap-channel-card.is-admin-disabled .mjap-lock-overlay,
.mjap-channel-card.is-admin-disabled .mjap-lock-overlay,
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-overlay,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-overlay,
.mjap-addon-card.is-admin-disabled .mjap-lock-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 30 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  background: rgba(255,255,255,.78) !important;
  backdrop-filter: blur(2px) !important;
  text-align: center !important;
}

body.minejobs-dashboard-addons-page .mjap-channel-card.is-locked-default .mjap-channel-card__toggle span,
body.minejobs-dashboard-job-addons-page .mjap-channel-card.is-locked-default .mjap-channel-card__toggle span,
.mjap-channel-card.is-locked-default .mjap-channel-card__toggle span {
  cursor: not-allowed !important;
}

body.minejobs-dashboard-addons-page .mjap-addon-card.is-locked-default .mjap-addon-switch,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-locked-default .mjap-addon-switch,
.mjap-addon-card.is-locked-default .mjap-addon-switch {
  cursor: not-allowed !important;
}


/* MineJobs 2026-07-01: keep protected/locked addon messages fully visible inside wide growth cards. */
body.minejobs-dashboard-addons-page .mjap-addon-card.is-verification-locked,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-verification-locked,
.mjap-addon-card.is-verification-locked,
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled,
.mjap-addon-card.is-admin-disabled {
  min-height: 190px !important;
}

body.minejobs-dashboard-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-overlay,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-overlay,
.mjap-addon-card.is-verification-locked .mjap-lock-overlay,
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-overlay,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-overlay,
.mjap-addon-card.is-admin-disabled .mjap-lock-overlay {
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 28px !important;
  overflow: auto !important;
}

body.minejobs-dashboard-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-box,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-box,
.mjap-addon-card.is-verification-locked .mjap-lock-box,
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-box,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-box,
.mjap-addon-card.is-admin-disabled .mjap-lock-box {
  width: min(680px, 100%) !important;
  max-width: min(680px, 100%) !important;
  gap: 6px !important;
  line-height: 1.8 !important;
}

body.minejobs-dashboard-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-box i,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-box i,
.mjap-addon-card.is-verification-locked .mjap-lock-box i,
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-box i,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-box i,
.mjap-addon-card.is-admin-disabled .mjap-lock-box i {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  font-size: 14px !important;
}

body.minejobs-dashboard-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-box small,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-verification-locked .mjap-lock-box small,
.mjap-addon-card.is-verification-locked .mjap-lock-box small,
body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-box small,
body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled .mjap-lock-box small,
.mjap-addon-card.is-admin-disabled .mjap-lock-box small {
  display: block !important;
  max-width: 100% !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.9 !important;
  white-space: normal !important;
}

@media  (max-width: 760px) {
  body.minejobs-dashboard-addons-page .mjap-addon-card.is-verification-locked,
  body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-verification-locked,
  .mjap-addon-card.is-verification-locked,
  body.minejobs-dashboard-addons-page .mjap-addon-card.is-admin-disabled,
  body.minejobs-dashboard-job-addons-page .mjap-addon-card.is-admin-disabled,
  .mjap-addon-card.is-admin-disabled {
    min-height: 230px !important;
  }
}

/* MineJobs 2026-07-02: tab-based add-ons, resume credits and access limits inside the add-ons portal. */
.mjap-form--channels,
.mjap-form--sms,
.mjap-form--resume_credits {
  margin-top: 22px;
}

.mjap-resume-credit-tab {
  display: grid;
  gap: 18px;
}

.mjap-panel-head--resume-credit {
  background: linear-gradient(135deg, rgba(4,103,242,.10), rgba(34,197,94,.10));
  border-color: rgba(4,103,242,.16);
}

.mjap-empty--soft {
  border: 1px dashed rgba(4,103,242,.24);
  background: rgba(4,103,242,.055);
  color: #40516f;
  border-radius: 20px;
  padding: 16px 18px;
  line-height: 1.9;
  text-align: right;
}

.mjap-channel-card.is-access-locked {
  opacity: .78;
  filter: grayscale(.08);
}

.mjap-channel-card.is-access-locked .mjap-channel-fields,
.mjap-channel-card.is-access-locked .mjap-channel-card__body,
.mjap-channel-card.is-access-locked .mjap-channel-card__icon {
  pointer-events: none;
}

.mjap-channel-card.is-access-locked .mjap-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  z-index: 4;
}

.mjap-channel-card.is-access-locked .mjap-lock-box {
  width: min(520px, 100%);
  background: #ffffff;
  border: 1px solid rgba(4,103,242,.16);
  box-shadow: 0 16px 42px rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  text-align: right;
}

.mjap-channel-card.is-access-locked .mjap-lock-box i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(4,103,242,.10);
  color: #0467f2;
}

.mjap-channel-card.is-access-locked .mjap-lock-box strong {
  display: block;
  color: #1d2a44;
  font-size: 13px;
  line-height: 1.7;
}

.mjap-channel-card.is-access-locked .mjap-lock-box small {
  display: block;
  color: #68758d;
  font-size: 12px;
  line-height: 1.8;
}

@media  (max-width: 760px) {
  .mjap-channel-card.is-access-locked .mjap-lock-overlay {
    align-items: stretch;
    padding: 12px;
  }

  .mjap-channel-card.is-access-locked .mjap-lock-box {
    grid-template-columns: 1fr;
  }
}

/* MineJobs Visibility Engine v154: smart auto-bump preview */
.mjve-auto-bump-preview {
    display: block;
    margin: 10px 0 8px;
    padding: 10px;
    border: 1px solid rgba(4, 103, 242, .14);
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}
.mjve-auto-bump-preview__title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #174ea6;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 8px;
}
.mjve-auto-bump-preview__days {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}
.mjve-auto-bump-preview__days span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    padding: 7px 5px;
    border-radius: 11px;
    background: #eef5ff;
    color: #163a68;
}
.mjve-auto-bump-preview__days b {
    font-size: 11px;
    font-weight: 900;
}
.mjve-auto-bump-preview__days small {
    direction: ltr;
    font-size: 10px;
    color: #64748b;
}
@media (max-width: 640px) {
    .mjve-auto-bump-preview__days { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* MineJobs v156: behavior previews for Priority / Urgent / Ladder add-ons */
.mjve-addon-preview{display:block;margin:10px 0 8px;padding:10px;border:1px solid rgba(4,103,242,.14);border-radius:14px;background:linear-gradient(180deg,#f8fbff,#fff)}
.mjve-addon-preview__title{display:inline-flex;align-items:center;gap:7px;color:#174ea6;font-weight:900;font-size:12px;margin-bottom:8px}
.mjve-addon-preview__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
.mjve-addon-preview__card{display:flex;flex-direction:column;gap:3px;padding:9px;border-radius:12px;background:#eef5ff;color:#163a68;line-height:1.55}
.mjve-addon-preview__card i{font-size:14px;color:#0467f2}.mjve-addon-preview__card b{font-size:11px;font-weight:900}.mjve-addon-preview__card small{font-size:10px;color:#64748b}
@media(max-width:640px){.mjve-addon-preview__grid{grid-template-columns:1fr}}

/* MineJobs v160: add-ons step shell moved from inline PHP */
.mj-addons-panel{
    margin:24px 0;
    direction:rtl;
}
.mj-addons-guide{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:12px;
    margin:0 0 18px;
}
.mj-addons-guide__card{
    background:#f8fbff;
    border:1px solid rgba(37,99,235,.12);
    border-radius:18px;
    padding:14px 16px;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
}
.mj-addons-guide__card b{
    display:block;
    margin-bottom:6px;
    color:#0f172a;
    font-size:13px;
    font-weight:900;
}
.mj-addons-guide__card small{
    display:block;
    color:#64748b;
    line-height:1.9;
}
.mj-addons-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0 0 16px;
}
.mj-addons-tab{
    border:1px solid rgba(37,99,235,.16);
    background:#fff;
    color:#334155;
    border-radius:999px;
    padding:9px 14px;
    cursor:pointer;
    font-weight:900;
    line-height:1.4;
    transition:.2s ease;
}
.mj-addons-tab:hover,
.mj-addons-tab.is-active{
    background:#0467f2;
    border-color:#0467f2;
    color:#fff;
    box-shadow:0 10px 22px rgba(4,103,242,.18);
}
.mj-addons-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:14px;
}
.mj-addon-card{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:10px;
    min-height:100%;
    padding:16px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:20px;
    background:#fff;
    box-shadow:0 12px 34px rgba(15,23,42,.07);
}
.mj-addon-card.is-locked,
.mj-addon-card.is-disabled{
    background:linear-gradient(180deg,#fff,#f8fafc);
}
.mj-addon-card__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
}
.mj-addon-card__title{
    margin:0;
    color:#0f172a;
    font-size:15px;
    font-weight:950;
    line-height:1.7;
}
.mj-addon-card__desc{
    margin:0;
    color:#64748b;
    line-height:1.9;
    font-size:12px;
}
.mj-addon-card__price{
    color:#0467f2;
    font-weight:950;
    white-space:nowrap;
}
.mj-addon-card__actions{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}
.mj-addon-lock-note,
.mj-addon-disabled-note{
    display:flex;
    align-items:flex-start;
    gap:8px;
    padding:10px 12px;
    border-radius:14px;
    background:#f1f5f9;
    color:#475569;
    line-height:1.75;
    font-size:12px;
}
.mj-addon-disabled-note{
    background:#fff7ed;
    color:#9a3412;
}
.mj-addon-card .mj-addon-check{
    display:inline-flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    user-select:none;
    color:#0f172a;
    font-weight:900;
}
.mj-addon-card .mj-addon-check input{
    width:18px;
    height:18px;
    margin:0;
    accent-color:#0467f2;
}
@media(max-width:640px){
    .mj-addons-panel{margin:18px 0}
    .mj-addons-grid{grid-template-columns:1fr}
    .mj-addon-card{border-radius:16px;padding:14px}
}
