.gpa-admin-wrap .gpa-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin: 14px 0 22px;
}

.gpa-admin-wrap .gpa-card {
	background: #fff;
	border: 1px solid #dbeafe;
	border-radius: 10px;
	padding: 14px;
}

.gpa-admin-wrap .gpa-big-number {
	font-size: 28px;
	font-weight: 700;
	color: #1d4ed8;
	margin: 8px 0 0;
}

.gpa-admin-wrap .gpa-manual-form {
	background: #fff;
	border: 1px solid #dbeafe;
	border-radius: 10px;
	padding: 16px;
	max-width: 960px;
}

.gpa-alert-shell {
	position: fixed;
	right: 14px;
	bottom: 14px;
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 10px;
}

.gpa-alert-inline {
	position: relative;
	right: auto;
	bottom: auto;
	z-index: 1;
}

.gpa-subscribe-btn {
	border: 0;
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	color: #fff;
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	min-height: 42px;
}

.gpa-subscribe-btn.is-subscribed {
	background: #0ea5e9;
}

.gpa-bell-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #e0f2fe;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(14, 116, 144, 0.2);
}

.gpa-bell-btn img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.gpa-unread-count {
	position: absolute;
	top: -5px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 0 5px;
}

.gpa-bell-dropdown {
	position: absolute;
	right: 0;
	bottom: 56px;
	width: min(360px, calc(100vw - 24px));
	background: #fff;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(30, 64, 175, 0.18);
	overflow: hidden;
	display: none;
}

.gpa-bell-dropdown.is-open {
	display: block;
}

.gpa-bell-head {
	padding: 11px 12px;
	font-size: 13px;
	font-weight: 700;
	color: #1e3a8a;
	background: #f0f9ff;
	border-bottom: 1px solid #e0f2fe;
}

.gpa-bell-list {
	max-height: 360px;
	overflow-y: auto;
}

.gpa-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 10px 12px;
	text-decoration: none;
	color: #0f172a;
	border-bottom: 1px solid #f1f5f9;
}

.gpa-item:hover {
	background: #f8fafc;
}

.gpa-item-icon img {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	object-fit: cover;
}

.gpa-item-text strong {
	display: block;
	font-size: 12px;
	line-height: 1.35;
	color: #0f172a;
}

.gpa-item-text small {
	display: block;
	font-size: 11px;
	color: #64748b;
	line-height: 1.35;
	margin-top: 2px;
}

.gpa-empty {
	padding: 14px 12px;
	font-size: 12px;
	color: #64748b;
}

@media (max-width: 768px) {
	.gpa-alert-shell {
		right: 10px;
		left: 10px;
		bottom: 10px;
	}
	.gpa-bell-dropdown {
		right: 0;
		width: calc(100vw - 20px);
	}
}

.custom-job-alert-shell {
	position: fixed;
	right: 14px;
	bottom: 14px;
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 8px;
}

.custom-job-alert-subscribe,
.custom-job-alert-unsubscribe {
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	min-height: 40px;
}

.custom-job-alert-subscribe {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	color: #fff;
}

.custom-job-alert-unsubscribe {
	background: #e2e8f0;
	color: #0f172a;
}

.custom-job-alert-bell {
	position: relative;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 0;
	background: #e0f2fe;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.custom-job-alert-bell img {
	width: 22px;
	height: 22px;
	object-fit: cover;
	border-radius: 6px;
}

.custom-job-alert-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #ef4444;
	color: #fff;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	padding: 0 4px;
}

.custom-job-alert-status {
	font-size: 11px;
	color: #475569;
	max-width: 180px;
}

.custom-job-alert-dropdown {
	position: absolute;
	right: 0;
	bottom: 52px;
	width: min(360px, calc(100vw - 20px));
	background: #fff;
	border: 1px solid #dbeafe;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(30, 64, 175, .18);
	overflow: hidden;
	display: none;
}

.custom-job-alert-dropdown.is-open {
	display: block;
}

.custom-job-alert-head {
	padding: 10px 12px;
	font-size: 12px;
	font-weight: 700;
	color: #1e3a8a;
	background: #f0f9ff;
	border-bottom: 1px solid #e0f2fe;
}

.custom-job-alert-list {
	max-height: 320px;
	overflow-y: auto;
}

.custom-job-alert-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 10px 12px;
	text-decoration: none;
	color: #0f172a;
	border-bottom: 1px solid #f1f5f9;
}

.custom-job-alert-item img {
	width: 20px;
	height: 20px;
	border-radius: 4px;
	object-fit: cover;
}

.custom-job-alert-item span strong {
	display: block;
	font-size: 12px;
	line-height: 1.35;
}

.custom-job-alert-item span small {
	display: block;
	font-size: 11px;
	color: #64748b;
}

.custom-job-alert-empty {
	padding: 12px;
	font-size: 12px;
	color: #64748b;
}

/* Refined custom job alert UI */
.custom-job-alert-shell {
	align-items: flex-end;
}

.custom-job-alert-panel {
	position: relative;
	background: #ffffff;
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	padding: 10px;
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
	min-width: 250px;
}

.custom-job-alert-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
}

.custom-job-alert-title {
	font-size: 12px;
	font-weight: 700;
	color: #1e3a8a;
	letter-spacing: .01em;
}

.custom-job-alert-actions {
	display: flex;
	gap: 8px;
}

.custom-job-alert-subscribe,
.custom-job-alert-unsubscribe {
	flex: 1;
	min-height: 38px;
}

.custom-job-alert-subscribe:hover {
	filter: brightness(1.04);
}

.custom-job-alert-unsubscribe:hover {
	background: #cbd5e1;
}

.custom-job-alert-status {
	display: block;
	margin-top: 6px;
	min-height: 14px;
}

.custom-job-alert-dropdown {
	right: 0;
	bottom: calc(100% + 8px);
	border-radius: 12px;
}

.custom-job-alert-list {
	max-height: 340px;
}

.custom-job-alert-item:hover {
	background: #eff6ff;
}

@media (max-width: 768px) {
	.custom-job-alert-shell {
		right: 10px;
		left: 10px;
		bottom: 10px;
	}
	.custom-job-alert-panel {
		width: 100%;
		min-width: 0;
	}
	.custom-job-alert-dropdown {
		width: calc(100vw - 20px);
	}
}

/* Mobile header style icon controls */
.custom-job-alert-mobile-icons {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 6px;
}

.custom-job-alert-icon-btn {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid #bfdbfe;
	background: #e0f2fe;
	color: #1d4ed8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
}

.custom-job-alert-install-icon span {
	transform: translateY(-1px);
}

.custom-job-alert-subscribe-modal {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.42);
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.custom-job-alert-modal-card {
	width: min(360px, 100%);
	background: #fff;
	border-radius: 12px;
	border: 1px solid #dbeafe;
	box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
	padding: 14px;
}

.custom-job-alert-modal-card h3 {
	margin: 0 0 6px;
	font-size: 17px;
	color: #1e3a8a;
}

.custom-job-alert-modal-card p {
	margin: 0 0 12px;
	font-size: 13px;
	color: #334155;
}

.custom-job-alert-modal-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.custom-job-alert-modal-subscribe,
.custom-job-alert-modal-unsubscribe,
.custom-job-alert-modal-ios-a2hs,
.custom-job-alert-modal-close {
	min-height: 44px;
	border-radius: 10px;
	border: 0;
	font-weight: 700;
	font-size: 13px;
}

.custom-job-alert-modal-subscribe {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	color: #fff;
}

.custom-job-alert-modal-unsubscribe {
	background: #0ea5e9;
	color: #fff;
}

.custom-job-alert-modal-close {
	background: #e2e8f0;
	color: #0f172a;
}

@media (max-width: 768px) {
	.custom-job-alert-shell {
		top: 10px;
		right: 58px;
		left: auto;
		bottom: auto;
		align-items: flex-start;
	}

	.custom-job-alert-panel {
		min-width: 0;
		width: auto;
		padding: 6px;
		border-radius: 12px;
	}

	.custom-job-alert-title,
	.custom-job-alert-actions,
	.custom-job-alert-status,
	.gpa-install-app-wrap {
		display: none !important;
	}

	.custom-job-alert-dropdown {
		right: 0;
		top: calc(100% + 8px);
		bottom: auto;
		width: min(340px, calc(100vw - 20px));
	}
}

/* Final UX fixes: stable icon sizes, reliable click layers, responsive placement */
.custom-job-alert-shell {
	position: fixed;
	top: 14px;
	right: 14px;
	bottom: auto;
	left: auto;
	z-index: 99999;
	pointer-events: auto;
}

.custom-job-alert-panel {
	pointer-events: auto;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	min-width: 0;
}

.custom-job-alert-mobile-icons {
	margin-bottom: 0;
}

.custom-job-alert-icon-btn,
.custom-job-alert-bell {
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	padding: 0;
}

.custom-job-alert-bell img {
	width: 18px;
	height: 18px;
	border-radius: 4px;
}

.custom-job-alert-badge {
	top: -5px;
	right: -5px;
}

.custom-job-alert-subscribe-modal {
	pointer-events: auto;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.custom-job-alert-modal-card {
	width: min(420px, calc(100vw - 28px));
	max-width: 420px;
	background: #ffffff;
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(30, 64, 175, 0.26);
	padding: 18px;
}

.custom-job-alert-modal-actions button {
	cursor: pointer;
}

.custom-job-alert-modal-card h3 {
	font-size: 20px;
	line-height: 1.25;
	margin: 0 0 8px;
	color: #1e3a8a;
}

.custom-job-alert-modal-card p {
	font-size: 14px;
	line-height: 1.55;
	color: #334155;
	margin: 0 0 14px;
}

.custom-job-alert-modal-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.custom-job-alert-modal-subscribe,
.custom-job-alert-modal-unsubscribe,
.custom-job-alert-modal-close {
	min-height: 44px;
	width: 100%;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.custom-job-alert-modal-subscribe {
	background: #2563eb;
	color: #fff;
	border-color: #1d4ed8;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.custom-job-alert-modal-unsubscribe {
	background: #2563eb;
	color: #ffffff;
	border-color: #1d4ed8;
	box-shadow: 0 6px 16px rgba(30, 64, 175, 0.18);
}

.custom-job-alert-modal-close {
	background: #e2e8f0;
	color: #0f172a;
	border-color: #cbd5e1;
}

.custom-job-alert-modal-ios-a2hs {
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	color: #ffffff;
	border-color: #0369a1;
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.24);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 14px;
	text-align: center;
}

.custom-job-alert-modal-install {
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #ffffff;
	border-color: #1d4ed8;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0;
}

.custom-job-alert-modal-install:hover {
	background: linear-gradient(135deg, #1d4ed8, #1e40af);
	border-color: #1e40af;
}

.custom-job-alert-modal-subscribe:hover,
.custom-job-alert-modal-unsubscribe:hover,
.custom-job-alert-modal-ios-a2hs:hover,
.custom-job-alert-modal-close:hover {
	transform: translateY(-1px);
}

.custom-job-alert-modal-subscribe:hover {
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}

.custom-job-alert-modal-unsubscribe:hover {
	background: #1d4ed8;
	border-color: #1e40af;
}

.custom-job-alert-modal-close:hover {
	background: #dbe3ee;
}

.custom-job-alert-modal-ios-a2hs:hover {
	background: linear-gradient(135deg, #0284c7, #0369a1);
	border-color: #075985;
}

.custom-job-alert-modal-ios-a2hs::before {
	content: "\2302";
	font-size: 16px;
	line-height: 1;
}

.custom-job-alert-modal-subscribe:focus-visible,
.custom-job-alert-modal-unsubscribe:focus-visible,
.custom-job-alert-modal-ios-a2hs:focus-visible,
.custom-job-alert-modal-close:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.28);
}

@media (min-width: 769px) {
	.custom-job-alert-actions,
	.custom-job-alert-status,
	.gpa-install-app-wrap,
	.custom-job-alert-dropdown {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.custom-job-alert-shell {
		top: 10px;
		right: 56px;
		left: auto;
		bottom: auto;
	}
	.custom-job-alert-icon-btn,
	.custom-job-alert-bell {
		width: 36px;
		height: 36px;
	}

	.custom-job-alert-modal-card {
		width: min(360px, calc(100vw - 24px));
		padding: 14px;
	}

	.custom-job-alert-modal-card h3 {
		font-size: 18px;
	}

	.custom-job-alert-modal-card p {
		font-size: 13px;
	}
}

/* Final production overrides */
.custom-job-alert-shell {
	position: fixed !important;
	top: 10px !important;
	right: 56px !important;
	left: auto !important;
	bottom: auto !important;
	z-index: 99999 !important;
}

.custom-job-alert-icon-btn,
.custom-job-alert-bell {
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	border-radius: 999px !important;
	touch-action: manipulation !important;
	pointer-events: auto !important;
	cursor: pointer !important;
}

.custom-job-alert-bell img {
	width: 16px !important;
	height: 16px !important;
}

.custom-job-alert-bell-glyph {
	font-size: 16px;
	line-height: 1;
	display: inline-block;
}

.custom-job-alert-subscribe-modal {
	z-index: 100000 !important;
	pointer-events: auto !important;
}

@media (min-width: 769px) {
	.custom-job-alert-shell {
		top: 14px !important;
		right: 14px !important;
	}
}

@media (max-width: 768px) {
	.custom-job-alert-shell {
		right: 54px !important;
	}

	.custom-job-alert-actions {
		display: none !important;
	}

	.custom-job-alert-dropdown {
		display: none;
	}

	.custom-job-alert-dropdown.is-open {
		display: block;
	}

.custom-job-alert-dropdown-actions {
		display: flex;
		gap: 8px;
		padding: 10px 12px;
		border-bottom: 1px solid #e2e8f0;
		background: #f8fbff;
	}

	.custom-job-alert-dropdown-actions .custom-job-alert-subscribe,
	.custom-job-alert-dropdown-actions .custom-job-alert-unsubscribe {
		flex: 1;
		min-height: 40px;
		border-radius: 10px;
		border: 1px solid #1d4ed8;
		background: #2563eb;
		color: #fff;
		font-size: 12px;
		font-weight: 700;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.custom-job-alert-dropdown-actions .custom-job-alert-unsubscribe {
		background: #0ea5e9;
		border-color: #0284c7;
	}
}

.custom-job-alert-dropdown-actions {
	display: flex;
	gap: 8px;
	padding: 10px 12px;
	border-bottom: 1px solid #e2e8f0;
	background: #f8fbff;
}

.custom-job-alert-dropdown-actions .custom-job-alert-subscribe,
.custom-job-alert-dropdown-actions .custom-job-alert-unsubscribe {
	flex: 1;
	min-height: 40px;
	border-radius: 10px;
	border: 1px solid #1d4ed8;
	background: #2563eb;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.custom-job-alert-dropdown-actions .custom-job-alert-unsubscribe {
	background: #0ea5e9;
	border-color: #0284c7;
}

/* Ultimate click/layout overrides */
.custom-job-alert-shell,
.custom-job-alert-panel,
.custom-job-alert-bell {
	pointer-events: auto !important;
}

.custom-job-alert-bell {
	position: relative;
	z-index: 100001 !important;
}

.custom-job-alert-dropdown {
	display: none;
	z-index: 100000 !important;
	pointer-events: auto !important;
}

.custom-job-alert-dropdown.is-open {
	display: block !important;
}

@media (max-width: 768px) {
	.custom-job-alert-shell.gpa-near-menu {
		position: relative !important;
		top: auto !important;
		right: auto !important;
		left: auto !important;
		bottom: auto !important;
		display: inline-flex !important;
		align-items: center !important;
		margin-right: 8px !important;
		vertical-align: middle;
	}
}

/* Clean final layout: stable icon row + professional panel behavior */
.custom-job-alert-shell {
	position: fixed !important;
	top: 14px !important;
	right: 14px !important;
	left: auto !important;
	bottom: auto !important;
	z-index: 99999 !important;
	display: inline-flex !important;
	align-items: center !important;
}

.custom-job-alert-panel {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	min-width: 0 !important;
}

.custom-job-alert-top {
	margin: 0 !important;
}

.custom-job-alert-actions,
.custom-job-alert-status,
.gpa-install-app-wrap {
	display: none !important;
}

.custom-job-alert-dropdown {
	position: absolute !important;
	top: calc(100% + 8px) !important;
	right: 0 !important;
	bottom: auto !important;
	width: 330px !important;
	max-width: calc(100vw - 20px) !important;
	border-radius: 12px !important;
	overflow: hidden !important;
}

.custom-job-alert-dropdown-actions {
	display: flex !important;
	gap: 8px;
	padding: 10px 12px;
	border-bottom: 1px solid #e2e8f0;
	background: #f8fbff;
}

.custom-job-alert-dropdown-actions .custom-job-alert-subscribe,
.custom-job-alert-dropdown-actions .custom-job-alert-unsubscribe {
	flex: 1;
	min-height: 40px;
	border-radius: 10px;
	border: 1px solid #1d4ed8;
	background: #2563eb;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.custom-job-alert-dropdown-actions .custom-job-alert-unsubscribe {
	background: #0ea5e9;
	border-color: #0284c7;
}

.custom-job-alert-icon-btn,
.custom-job-alert-bell {
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
}

@media (max-width: 768px) {
	.custom-job-alert-shell {
		right: 54px !important; /* beside mobile menu toggle */
		top: 10px !important;
	}

	.custom-job-alert-dropdown {
		width: min(340px, calc(100vw - 20px)) !important;
	}
}
