.wpjmca-application-form-wrapper {
	background: #ffffff;
	padding: 30px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-top: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wpjmca-application-form-wrapper h3 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: #333;
	border-bottom: 2px solid #0073aa;
	padding-bottom: 10px;
	display: inline-block;
}

.wpjmca-application-form-wrapper .form-row {
	margin-bottom: 20px;
}

.wpjmca-application-form-wrapper label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #444;
}

.wpjmca-application-form-wrapper .required {
	color: red;
}

.wpjmca-application-form-wrapper input[type="text"],
.wpjmca-application-form-wrapper input[type="email"],
.wpjmca-application-form-wrapper input[type="tel"],
.wpjmca-application-form-wrapper input[type="date"],
.wpjmca-application-form-wrapper textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	box-sizing: border-box;
}

.wpjmca-application-form-wrapper input[type="file"] {
	width: 100%;
	padding: 10px 0;
	font-size: 14px;
}

.wpjmca-application-form-wrapper input:focus,
.wpjmca-application-form-wrapper textarea:focus {
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
	outline: none;
}

.wpjmca-submit-button {
	background-color: #0073aa;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.wpjmca-submit-button:hover {
	background-color: #005177;
}

.wpjmca-message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 4px;
	font-size: 14px;
}

.wpjmca-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.wpjmca-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.wpjmca-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	border-top-color: #0073aa;
	animation: spin 1s ease-in-out infinite;
	vertical-align: middle;
	margin-left: 10px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.candidate_resume {
	color: #0d1c3d !important;
}

/* Job Serial Numbers */
.job_listings {
	counter-reset: job-counter;
}

.job_listings li.job_listing {
	counter-increment: job-counter;
}

.job_listings li.job_listing a {
	display: flex !important;
	align-items: center !important;
}

.job-serial-number::before {
	content: counter(job-counter);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #0d1c3d;
	color: #fff;
	border-radius: 50%;
	font-weight: bold;
	margin-right: 20px;
	flex-shrink: 0;
}

/* Hide company logo in listings */
.job_listings li.job_listing img.company_logo {
	display: none !important;
}