/* NPG Recruitment Frontend Styles */
.npg-vacancy-container {
	margin: 40px 0;
}

.npg-filter-bar {
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	margin-bottom: 40px;
}

#npg-vacancy-filter {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

#npg-vacancy-filter input,
#npg-vacancy-filter select {
	padding: 12px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	flex: 1;
	min-width: 200px;
	font-size: 15px;
}

.npg-btn, .btn-primary {
	background: #004a99;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s, transform 0.2s;
	text-align: center;
}

.npg-btn:hover, .btn-primary:hover {
	background: #003366;
	transform: translateY(-2px);
	color: #fff;
}

.npg-vacancy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
}

.npg-vacancy-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #eee;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.npg-vacancy-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.npg-vacancy-card-content {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card-labels {
	display: flex;
	gap: 8px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.npg-branch-label {
	background: rgba(0, 74, 153, 0.1);
	color: #004a99;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 4px;
	text-transform: uppercase;
}

.npg-custom-label {
	background: #a3c614;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 4px;
	text-transform: uppercase;
}

.npg-filled-label {
	background: #ff4d4d;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 4px;
	text-transform: uppercase;
}

.npg-vacancy-card h3 {
	margin: 0 0 15px 0;
	font-size: 22px;
	color: #333;
}

.npg-vacancy-meta {
	display: flex;
	gap: 20px;
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
}

.npg-vacancy-meta i {
	color: #004a99;
	margin-right: 5px;
}

.npg-vacancy-card p {
	color: #777;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 25px;
	flex-grow: 1;
}

.npg-btn-outline {
	display: inline-block;
	text-align: center;
	border: 2px solid #004a99;
	color: #004a99;
	padding: 10px 25px;
	border-radius: 8px;
	font-weight: bold;
	transition: all 0.3s;
}

.npg-btn-outline:hover {
	background: #004a99;
	color: #fff;
}

.is-filled {
	opacity: 0.8;
}

.is-filled .npg-btn-outline {
	border-color: #999;
	color: #999;
	pointer-events: none;
}

/* Sollicitatiestatus / Track & Trace */
.npg-tt-wrap {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border: 1px solid #eee;
	margin-bottom: 40px;
}

.tt-progress {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 40px 0;
}

.tt-progress-line {
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	height: 4px;
	background: #eee;
	z-index: 1;
}

.tt-step {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 100px;
}

.tt-dot {
	width: 32px;
	height: 32px;
	background: #fff;
	border: 4px solid #eee;
	border-radius: 50%;
	margin: 0 auto 10px;
	transition: all 0.3s;
}

.tt-step.active .tt-dot {
	border-color: #39b54a;
	background: #39b54a;
	box-shadow: 0 0 15px rgba(57, 181, 74, 0.4);
}

.tt-step span {
	font-size: 13px;
	font-weight: 800;
	color: #999;
}

.tt-step.active span {
	color: #333;
}

/* Application Form Modernization */
.npg-app-form {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	max-width: 700px;
	margin: 40px auto;
}

.npg-app-form .form-group {
	margin-bottom: 25px;
	position: relative;
}

.npg-app-form label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #444;
	margin-bottom: 8px;
	transition: color 0.3s;
}

.npg-app-form input[type="text"],
.npg-app-form input[type="email"],
.npg-app-form textarea {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #f0f0f0;
	border-radius: 12px;
	font-size: 16px;
	background: #fdfdfd;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.npg-app-form input:focus,
.npg-app-form textarea:focus {
	border-color: #004a99;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.1);
	outline: none;
}

.npg-app-form .file-upload-wrapper {
	position: relative;
	border: 2px dashed #ddd;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s;
	background: #fafafa;
}

.npg-app-form .file-upload-wrapper:hover {
	border-color: #004a99;
	background: #f0f7ff;
}

.npg-app-form input[type="file"] {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
}

.btn-submit {
	background: var(--npg-apply-btn, #39b54a);
	color: #fff;
	border: none;
	padding: 18px 40px;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	filter: brightness(0.9);
}

/* AJAX Filtering Skeleton */
.npg-loading {
	opacity: 0.5;
	pointer-events: none;
	filter: blur(2px);
	transition: all 0.3s;
}

/* Profile Section */
.npg-profile-box {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 30px;
	border: 1px solid #eee;
}

.npg-profile-title {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 15px;
	display: block;
}

.npg-profile-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.npg-profile-item label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 800;
	color: #999;
	margin-bottom: 5px;
}

.npg-profile-item span {
	font-weight: 700;
	color: #333;
	display: block;
}

.npg-tt-fail {
	padding: 40px;
	background: #fff;
	border-radius: 12px;
	text-align: center;
	border: 1px solid #eee;
	color: #ff4d4d;
	font-weight: 800;
}