.job-app-container {
	max-width: 700px;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 90px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.job-app-form-wrapper {
	background: white;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.job-app-step {
	display: none;
}
.job-app-step.active {
	display: block;
}
.job-app-step-indicator {
	display: flex;
	justify-content: center;
	margin: 20px 0 40px 0;
	gap: 16px;
}
.job-app-step-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #e5e7eb;
	position: relative;
}
.job-app-step-dot.active {
	background: #3b82f6;
}
.job-app-step-dot.completed {
	background: #10b981;
}
.job-app-step-dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
	opacity: 0;
}
.job-app-step-dot.active::after,
.job-app-step-dot.completed::after {
	opacity: 1;
}
h2 {
	color: #374151;
	margin-bottom: 0px;
	font-size: 2rem;
	text-align: center;
	font-weight: 600;
	letter-spacing: 1px;
}
h3 {
	color: #111827;
	margin: 40px 0 24px;
	font-size: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 12px;
}
h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: #3b82f6;
	border-radius: 2px;
}
.job-app-form-group {
	margin-bottom: 28px;
}
.job-app-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #374151;
	font-size: 0.95rem;
}
input, select, textarea {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 16px;
	background: #fafafa;
	color: #111827;
	font-family: inherit;
}
input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: #3b82f6;
	background: white;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
input:disabled {
	background: #f3f4f6;
	color: #6b7280;
	cursor: not-allowed;
}
textarea {
	resize: vertical;
	min-height: 120px;
}
.job-app-file-upload {
	position: relative;
	display: block;
	width: 100%;
}
.job-app-file-upload input[type="file"] {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.job-app-file-upload-label {
	display: block;
	padding: 24px;
	border: 2px dashed #d1d5db;
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	background: #f9fafb;
	color: #6b7280;
	font-weight: 500;
}
.job-app-file-upload-label:hover {
	border-color: #3b82f6;
	background: #eff6ff;
	color: #3b82f6;
}
.job-app-file-preview {
	margin-top: 12px;
	padding: 12px 16px;
	background: #f0f9ff;
	border-radius: 8px;
	font-size: 14px;
	color: #0369a1;
	border: 1px solid #e0f2fe;
	display: none;
}
.job-app-checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 16px;
}
.job-app-checkbox-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.job-app-checkbox-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: #3b82f6;
}
.job-app-checkbox-item label {
	margin: 0;
	font-weight: 400;
}
.job-app-btn {
	padding: 16px 32px;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	letter-spacing: 0.025em;
}
.job-app-btn-primary {
	background: #3b82f6;
	color: white;
}
.job-app-btn-primary:hover {
	background: #2563eb;
}
.job-app-btn-secondary {
	background: #6b7280;
	color: white;
}
.job-app-btn-secondary:hover {
	background: #4b5563;
}
.job-app-btn-success {
	background: #10b981;
	color: white;
}
.job-app-btn-success:hover {
	background: #059669;
}
.job-app-btn-danger {
	background: #ef4444;
	color: white;
	padding: 8px 16px;
	font-size: 14px;
}
.job-app-btn-danger:hover {
	background: #dc2626;
}
.job-app-form-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	gap: 16px;
}
.job-app-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	overflow-y: auto;
	padding: 20px 0;
}
.job-app-modal-content {
	background-color: white;
	margin: 0 auto;
	padding: 40px;
	border-radius: 20px;
	width: 90%;
	max-width: 700px;
	min-height: auto;
	position: relative;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.job-app-modal-close {
	color: #9ca3af;
	float: right;
	font-size: 32px;
	font-weight: 300;
	cursor: pointer;
	line-height: 1;
}
.job-app-modal-close:hover {
	color: #374151;
}
.job-app-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 24px;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.job-app-table th, .job-app-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid #f3f4f6;
}
.job-app-table th {
	background: #f8fafc;
	color: #374151;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.job-app-table tr:last-child td {
	border-bottom: none;
}
.job-app-table tr:hover {
	background: #f9fafb;
}
.job-app-error {
	color: #ef4444;
	font-size: 14px;
	margin-top: 8px;
	font-weight: 500;
	display: none;
}
.job-app-error.show {
	display: block;
}
/* Processing Modal Styles */
.job-app-processing-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}
.job-app-processing-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 60px 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	min-width: 320px;
}
.job-app-processing-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid #e5e7eb;
	border-top: 4px solid #3b82f6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 24px;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.job-app-processing-text {
	font-size: 1.25rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 8px;
}
.job-app-processing-subtext {
	font-size: 1rem;
	color: #6b7280;
	font-weight: 500;
}
/* Notification Styles */
.job-app-notification {
	position: fixed;
	top: 20px;
	right: -400px;
	background: white;
	padding: 20px 24px;
	border-radius: 12px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border-left: 4px solid #10b981;
	z-index: 1500;
	min-width: 320px;
	max-width: 400px;
	font-weight: 500;
	color: #111827;
	transition: right 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.job-app-notification.show {
	right: 20px;
}
.job-app-notification-success {
	border-left-color: #10b981;
	background: #f0fdf4;
	color: #166534;
}
.job-app-notification-error {
	border-left-color: #ef4444;
	background: #fef2f2;
	color: #991b1b;
}
.job-app-notification-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #9ca3af;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	flex-shrink: 0;
}
.job-app-notification-close:hover {
	background: rgba(0, 0, 0, 0.1);
	color: #374151;
}
@media (max-width: 768px) {
	.job-app-container {
		padding: 40px 16px;
	}
	.job-app-form-wrapper {
		padding: 40px 24px;
		border-radius: 20px;
	}
	.job-app-form-row {
		grid-template-columns: 1fr;
	}
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 1.75rem;
	}
	.job-app-form-navigation {
		flex-direction: column;
	}
	.job-app-btn {
		width: 100%;
	}
	.job-app-modal-content {
		margin: 0 auto;
		padding: 24px;
		border-radius: 16px;
		width: 95%;
	}
	.job-app-table {
		font-size: 14px;
	}
	.job-app-table th, .job-app-table td {
		padding: 12px 16px;
	}
}
@media (max-width: 480px) {
	.job-app-container {
		padding: 24px 12px;
	}
	.job-app-form-wrapper {
		padding: 24px 16px;
	}
	h1 {
		font-size: 2rem;
	}
	.job-app-checkbox-group {
		flex-direction: column;
		gap: 12px;
	}
	.job-app-notification {
		right: -350px;
		min-width: 280px;
		max-width: 320px;
		top: 10px;
	}
	.job-app-notification.show {
		right: 10px;
	}
	.job-app-processing-content {
		padding: 40px 24px;
		min-width: 280px;
	}
}