.jla-wrap {
	max-width: 800px;
	margin: 0 auto;
	font-family: inherit;
}

/* --- Filters --- */
.jla-filters {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.jla-filter-label {
	font-weight: 600;
	margin-right: 6px;
}
.jla-filter-btn {
	background: #f1f1f1;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 6px 14px;
	cursor: pointer;
	font-size: 13px;
}
.jla-filter-btn.is-active,
.jla-filter-btn:hover {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}

/* --- Job cards --- */
.jla-job-card {
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 16px;
	background: #fff;
}
.jla-job-title {
	margin: 0 0 8px;
	font-size: 20px;
}
.jla-job-meta {
	font-size: 13px;
	color: #555;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.jla-job-badges {
	margin-bottom: 10px;
}
.jla-badge {
	display: inline-block;
	background: #eef4ff;
	color: #1d4ed8;
	border-radius: 999px;
	padding: 3px 10px;
	font-size: 12px;
	margin-right: 6px;
}
.jla-job-excerpt {
	font-size: 14px;
	color: #333;
	margin-bottom: 12px;
}
.jla-apply-btn,
.jla-submit-btn {
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 10px 18px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
}
.jla-apply-btn:hover,
.jla-submit-btn:hover {
	background: #135e96;
}
.jla-no-jobs {
	color: #666;
	font-style: italic;
}

/* --- Form --- */
.jla-form-wrap {
	margin-top: 30px;
	border-top: 2px solid #eee;
	padding-top: 24px;
}
.jla-selected-job-note {
	background: #fff8e5;
	border: 1px solid #f2d98e;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 14px;
}
.jla-clear-selected {
	background: none;
	border: none;
	color: #b03636;
	cursor: pointer;
	margin-left: 10px;
}
.jla-field {
	margin-bottom: 16px;
}
.jla-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}
.jla-field input[type="text"],
.jla-field input[type="email"],
.jla-field input[type="url"],
.jla-field input[type="date"],
.jla-field input[type="file"],
.jla-field select,
.jla-field textarea {
	width: 100%;
	max-width: 500px;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
}
.jla-checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.jla-checkbox-label {
	font-weight: normal !important;
	display: flex !important;
	align-items: center;
	gap: 6px;
	background: #f7f7f7;
	padding: 6px 12px;
	border-radius: 6px;
}
.jla-form-response {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 14px;
	display: none;
}
.jla-form-response.is-success {
	display: block;
	background: #e7f7ea;
	color: #1e7b34;
	border: 1px solid #b6e2c1;
}
.jla-form-response.is-error {
	display: block;
	background: #fdeaea;
	color: #a3231f;
	border: 1px solid #f2c1bf;
}
