:root {
	--nfa-blue: #2027A1;
	--nfa-gray: #878787;
	--nfa-black: #000000;
	--nfa-white: #FFFFFF;
	--nfa-soft: #F2F3F8;
	--nfa-track: #D7D9E0;
}

html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

body {
	background: #fff;
	font-family: "Manrope", Arial, sans-serif !important;
}

body *,
body button,
body input,
body select,
body textarea {
	font-family: "Manrope", Arial, sans-serif !important;
}

/* Needed because body * forces Manrope and can break Material Symbols */
.material-symbols-outlined {
	font-family: "Material Symbols Outlined" !important;
	font-weight: normal !important;
	font-style: normal !important;
	font-size: 20px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "liga";
}

.breadcrumb-container,
.page-breadcrumbs,
.page-header,
.page-header-actions,
.page-title,
.page-title .title-text,
.web-page-title {
	display: none !important;
}

.page_content,
.page-content-wrapper,
.web-page-content,
.page-body,
.page-wrapper {
	max-width: none !important;
	width: 100% !important;
	overflow-x: hidden !important;
}

.web-page-content .container,
.web-page-content .container-xl,
.web-page-content .container-lg,
.web-page-content .container-md,
.web-page-content .container-sm {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	overflow-x: hidden !important;
}

.nfa-body-shell {
	width: 100%;
	max-width: 1280px;
	margin: 36px auto 110px;
	padding: 0 32px;
	box-sizing: border-box;
	overflow-x: hidden;
}

.nfa-main-header {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(300px, 1fr) minmax(320px, 602px);
	justify-content: space-between;
	align-items: start;
	gap: 32px;
	margin-bottom: 36px;
}

.nfa-main-header-text h1 {
	margin: 0;
	color: var(--nfa-black);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
}

.nfa-main-header-text p {
	margin: 6px 0 0;
	color: #575757;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 400;
}

.nfa-main-search {
	width: 100%;
	height: 63px;
	background: var(--nfa-soft);
	border-radius: 4px;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-sizing: border-box;
}

.nfa-main-search input {
	flex: 1;
	height: 39px;
	border: none;
	outline: none;
	background: var(--nfa-white);
	border-radius: 4px;
	padding: 12px;
	font-size: 14px;
	font-weight: 400;
	color: var(--nfa-black);
	min-width: 0;
	box-shadow: none;
}

.nfa-main-search input::placeholder {
	color: #9A9A9A;
}

.nfa-search-icon {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--nfa-black);
	font-size: 14px;
	line-height: 1;
	flex-shrink: 0;
}

.nfa-job-layout {
	display: grid;
	grid-template-columns: 288px minmax(0, 1fr);
	gap: 40px;
	align-items: start;
	width: 100%;
	min-width: 0;
}

.nfa-filter-panel {
	width: 288px;
	min-height: 851px;
	background: var(--nfa-soft);
	border-radius: 4px;
	padding: 32px;
	box-sizing: border-box;
}

.nfa-filter-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 38px;
}

.nfa-filter-header h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	color: var(--nfa-black);
	letter-spacing: -0.45px;
}

.nfa-clear-btn {
	border: none;
	background: transparent;
	color: var(--nfa-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	padding: 0;
	cursor: pointer;
}

.nfa-filter-group {
	margin-bottom: 38px;
}

.nfa-filter-label {
	display: block;
	margin-bottom: 16px;
	color: var(--nfa-gray);
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.nfa-job-type-toggle {
	display: flex;
	gap: 8px;
}

.nfa-job-type-toggle button {
	border: none;
	border-radius: 4px;
	background: var(--nfa-white);
	color: var(--nfa-black);
	min-width: 94px;
	height: 34px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	line-height: 1;
}

.nfa-job-type-toggle button.active {
	background: var(--nfa-blue);
	color: var(--nfa-white);
}

.nfa-salary-range {
	width: 100%;
}

.nfa-range-slider {
	position: relative;
	height: 26px;
}

.nfa-range-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 999px;
	background: var(--nfa-track);
	transform: translateY(-50%);
	z-index: 1;
}

.nfa-range-fill {
	position: absolute;
	top: 50%;
	height: 5px;
	border-radius: 999px;
	background: var(--nfa-blue);
	transform: translateY(-50%);
	z-index: 2;
}

.nfa-range-slider input[type="range"] {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 26px;
	margin: 0;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
	z-index: 3;
}

.nfa-range-slider input[type="range"]::-webkit-slider-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 3px solid var(--nfa-blue);
	background: var(--nfa-white);
	cursor: pointer;
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
}

.nfa-range-slider input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 3px solid var(--nfa-blue);
	background: var(--nfa-white);
	cursor: pointer;
	pointer-events: auto;
}

.nfa-range-values {
	margin-top: 6px;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
	color: var(--nfa-gray);
}

.nfa-range-values .max {
	color: var(--nfa-blue);
}

.nfa-select-box {
	position: relative;
	height: 42px;
	background: var(--nfa-white);
	border-radius: 4px;
	display: flex;
	align-items: center;
	padding: 0 14px;
	box-sizing: border-box;
}

.nfa-select-box select {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	padding: 0 28px 0 24px;
	font-size: 14px;
	font-weight: 500;
	color: var(--nfa-black);
	cursor: pointer;
}

.nfa-select-icon {
	position: absolute;
	left: 11px;
	width: 14px;
	height: 14px;
	object-fit: contain;
	pointer-events: none;
}

.nfa-select-arrow {
	position: absolute;
	right: 12px;
	font-size: 12px;
	color: var(--nfa-black);
	pointer-events: none;
}

.nfa-filter-btn {
	width: 100%;
	height: 46px;
	border-radius: 4px;
	border: 1.5px solid var(--nfa-blue);
	background: transparent;
	color: var(--nfa-blue);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.nfa-filter-btn:hover {
	background: rgba(32, 39, 161, 0.08);
}

.nfa-job-results {
	width: 100%;
	min-width: 0;
	overflow: visible;
}

.nfa-results-count {
	margin: 0 0 18px;
	color: var(--nfa-gray);
	font-size: 14px;
	font-weight: 500;
}

.nfa-job-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	min-width: 0;
}

.nfa-job-card {
	width: 100%;
	min-height: 265px;
	background: var(--nfa-soft);
	border-radius: 4px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
	padding: 16px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	min-width: 0;
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nfa-job-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.nfa-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	min-width: 0;
}

.nfa-card-title-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
}

.nfa-card-icon-main {
	width: 20px;
	height: 20px;
	object-fit: contain;
	flex-shrink: 0;
	margin-top: 1px;
	display: block;
}

.nfa-detail-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.nfa-card-title-wrap {
	min-width: 0;
}

.nfa-card-title-wrap h4 {
	margin: 0 0 2px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1.2;
	color: var(--nfa-black);
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.nfa-card-sub {
	font-size: 12px;
	color: #111;
	line-height: 1.2;
	font-weight: 500;
	overflow-wrap: anywhere;
}

.nfa-bookmark-btn {
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	position: relative;
	z-index: 5;
}

.nfa-bookmark {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--nfa-black);
	fill: none;
	stroke: currentColor;
	transition: color 0.15s ease, fill 0.15s ease, stroke 0.15s ease;
	filter: drop-shadow(0 1px 2px rgba(155, 155, 155, 0.1)) drop-shadow(0 4px 4px rgba(155, 155, 155, 0.09));
}

.nfa-bookmark.active {
	color: var(--nfa-blue);
	fill: var(--nfa-blue);
	stroke: var(--nfa-blue);
}

.nfa-detail-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 500;
	color: #222222;
	line-height: 1.2;
	min-width: 0;
}

.nfa-detail-item span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.nfa-card-footer {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
	flex-wrap: nowrap;
}

.nfa-card-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	color: var(--nfa-gray);
	min-width: 0;
	flex-wrap: wrap;
}

.nfa-card-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}

.nfa-apply-btn {
	min-width: 76px;
	height: 38px;
	padding: 0 18px;
	border: none;
	border-radius: 4px;
	background: var(--nfa-blue);
	color: var(--nfa-white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 5;
}

.nfa-apply-btn:hover {
	background: #1b2189;
}

.nfa-empty-state {
	padding: 32px;
	background: var(--nfa-soft);
	color: var(--nfa-gray);
	border-radius: 4px;
	font-size: 14px;
}

/* Toast Notification */
.toast-notification {
	position: fixed;
	top: 96px;
	right: 60px;
	min-width: 260px;
	max-width: 320px;
	min-height: 56px;
	padding: 10px 18px 10px 12px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-sizing: border-box;
	font-family: "Manrope", Arial, sans-serif !important;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	color: #000000;
	background: linear-gradient(110deg, #9fb7c3 0%, #b8cccc 55%, #d8f1dc 100%);
	z-index: 99999;
	opacity: 0;
	transform: translateX(24px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
}

.toast-notification.show {
	opacity: 1;
	transform: translateX(0);
}

.toast-notification.toast-success {
	background: linear-gradient(110deg, #9fb7c3 0%, #b8cccc 55%, #d8f1dc 100%);
	color: #000000;
}

.toast-notification.toast-info {
	background: linear-gradient(110deg, #c3ad9f 0%, #ccc0b8 55%, #f1dcd8 100%);
	color: #000000;
}

.toast-icon {
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	border-radius: 50%;
	background: #8ed56a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	flex-shrink: 0;
	overflow: hidden;
}

.toast-icon .material-symbols-outlined {
	font-family: "Material Symbols Outlined" !important;
	color: #ffffff !important;
	font-size: 20px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	font-style: normal !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "liga";
}

.toast-message {
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
}

.toast-check-icon {
	color: #ffffff;
	font-family: "Manrope", Arial, sans-serif !important;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Bookmark Login Modal */
.bookmark-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.bookmark-modal-container {
	background: white;
	border-radius: 12px;
	padding: 48px 40px;
	text-align: center;
	max-width: 480px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bookmark-modal-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	background: #F2F3F8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2027a1;
}

.bookmark-modal-icon .material-symbols-outlined {
	font-family: "Material Symbols Outlined" !important;
	font-size: 36px !important;
	font-weight: 400 !important;
	color: #2027a1;
}

.bookmark-modal-title {
	font-size: 24px;
	font-weight: 700;
	color: #2027a1;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.bookmark-modal-message {
	font-size: 16px;
	color: #666666;
	margin: 0 0 32px 0;
	line-height: 1.5;
}

.bookmark-modal-btn {
	display: inline-block;
	background: #2027a1;
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	padding: 14px 32px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
	min-width: 240px;
	text-align: center;
}

.bookmark-modal-btn:hover {
	background: #1b2189;
	text-decoration: none;
	color: white;
}

@media (max-width: 1200px) {
	.nfa-body-shell {
		max-width: 100%;
		padding: 0 24px;
	}

	.nfa-main-header {
		grid-template-columns: minmax(280px, 1fr) minmax(300px, 480px);
		gap: 24px;
	}

	.nfa-job-layout {
		grid-template-columns: 288px minmax(0, 1fr);
		gap: 24px;
	}

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

@media (max-width: 900px) {
	.nfa-body-shell {
		width: 100%;
		max-width: 100%;
		margin: 24px auto 70px;
		padding: 0 16px;
		overflow-x: hidden;
	}

	.nfa-main-header {
		display: flex;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 28px;
	}

	.nfa-main-search {
		width: 100%;
		height: 63px;
		padding: 12px;
	}

	.nfa-job-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.nfa-filter-panel {
		width: 100%;
		min-height: auto;
	}

	.nfa-job-results {
		width: 100%;
	}

	.nfa-job-grid {
		grid-template-columns: 1fr;
	}

	.nfa-job-card {
		width: 100%;
	}

	.toast-notification {
		top: 88px;
		right: 16px;
		left: auto;
		width: auto;
		min-width: 230px;
		max-width: calc(100vw - 32px);
		min-height: 54px;
		padding: 9px 14px 9px 10px;
		gap: 10px;
		font-size: 13px;
	}

	.toast-icon {
		width: 34px;
		height: 34px;
		min-width: 34px;
		min-height: 34px;
	}

	.toast-icon .material-symbols-outlined {
		font-size: 20px !important;
	}

	.toast-message {
		font-size: 13px;
		white-space: normal;
	}
}

@media (max-width: 600px) {
	.nfa-filter-panel {
		padding: 24px;
	}

	.nfa-card-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.nfa-apply-btn {
		width: 100%;
	}

	.bookmark-modal-container {
		padding: 32px 24px;
	}

	.bookmark-modal-icon {
		width: 60px;
		height: 60px;
	}

	.bookmark-modal-icon .material-symbols-outlined {
		font-size: 28px !important;
	}

	.bookmark-modal-title {
		font-size: 20px;
	}

	.bookmark-modal-message {
		font-size: 14px;
	}

	.bookmark-modal-btn {
		font-size: 14px;
		padding: 12px 24px;
		min-width: 200px;
	}
}

.nfa-apply-btn.applied {
  background: #878787 !important;
  color: #ffffff !important;
  border-color: #878787 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}