.job-listings-container {
	font-family: Arial, sans-serif;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	line-height: 1.5;
}
.job-filter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 25px;
	align-items: flex-end;
}
.filter-group {
	flex: 1 1 180px;
}
.filter-group.keyword-filter-group {
	flex: 0 0 100%;
	margin-bottom: 10px;
	align-self: flex-start;
}
.filter-group input,
.filter-group select {
	width: 100%;
	padding: 6px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.9em;
	color: #333;
	margin-bottom: 10px;
}
.filter-group input::placeholder,
.filter-group select option[disabled]:first-child {
	color: #333;
	opacity: 1;
}
.job-filter-form button.filter-button {
	padding: 10px 16px;
	background-color: #B9FF00;
	color: #0C1F29 !important;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.9em;
}
.job-filter-form button.filter-button:hover {
	background-color: #2980b9;
}
.filter-buttons {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}
.reset-button {
	padding: 4px 16px;
	background-color: #fff;
	color: #333;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.9em;
	display: inline-block;
	line-height: 1;
	float: right;
}
.reset-button:hover {
	background-color: #222;
}
.job-listings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
.job-listing {
	border: 1px solid #ddd;
	padding: 25px;
	border-radius: 5px;
	background-color: #F2F8FA;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.job-title-link {
	text-decoration: none;
	color: inherit;
}
.job-title-link:hover .job-title {
	color: #3498db;
}
.job-title {
	color: #2c3e50;
	font-size: 1.8em;
	margin-bottom: 8px;
	line-height: 1.3em;
}
.job-details {
	margin-bottom: auto;
	flex-grow: 1;
}
.job-details p {
	margin: 4px 0;
	font-size: 1.2em;
}
.job-details strong {
	display: inline-block;
	width: 130px;
	font-size: 1.1em;
	font-weight: 500;
}
.view-job-button {
	display: inline-block;
	padding: 8px 16px;
	background-color: #3498db;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 1.0em;
	margin-top: 10px;
	text-align: center;
}
.view-job-button:hover {
	background-color: #2980b9;
}
.apply-button {
	display: inline-block;
	padding: 6px 12px;
	background-color: #3498db;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.85em;
}
.apply-button:hover {
	background-color: #2980b9;
}
.error {
	color: red;
	font-weight: bold;
	font-size: 0.9em;
}
.no-jobs {
	color: #555;
	font-style: italic;
	font-size: 0.9em;
}
.job-detail-container {
	font-family: Arial, sans-serif;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
.back-button {
	display: inline-block;
	margin-bottom: 20px;
	padding: 8px 16px;
	background-color: #ccc;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
}
.back-button:hover {
	background-color: #bbb;
}
.job-meta {
	margin-bottom: 20px;
}
.job-meta p {
	margin: 5px 0;
}
.job-description {
	margin-bottom: 20px;
}
.job-description * {
	margin-bottom: 10px;
}
@media (max-width: 768px) {
	.job-listings-grid {
		grid-template-columns: 1fr;
	}
	.filter-group {
		flex: 1 1 100%;
	}
}