.egstack-jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.egstack-job-card {
	border: 1px solid #eee;
	padding: 20px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: transform 0.2s;
}

.egstack-job-card:hover {
	transform: translateY(-5px);
}

.egstack-job-title {
	margin-top: 0;
	font-size: 1.25rem;
}

.egstack-job-meta {
	margin-bottom: 15px;
	font-size: 0.875rem;
	color: #666;
}

.egstack-job-meta span {
	margin-right: 10px;
	background: #f0f0f0;
	padding: 2px 8px;
	border-radius: 4px;
}

.egstack-apply-button {
	display: inline-block;
	background: #0073aa;
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
}

.egstack-apply-button:hover {
	background: #005177;
	color: #fff;
}

.egstack-apply-form-container {
	max-width: 600px;
	margin: 20px 0;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.form-group input, .form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.egstack-submit-button {
	background: #0073aa;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
}

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

.egstack-form-message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 4px;
	display: none;
}

.egstack-form-message.success {
	background: #d4edda;
	color: #155724;
	display: block;
}

.egstack-form-message.error {
	background: #f8d7da;
	color: #721c24;
	display: block;
}

.egstack-single-job-container {
	max-width: 1000px;
	margin: 40px auto;
	padding: 0 20px;
}

.egstack-job-header {
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.egstack-job-cover img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 20px;
}

.egstack-job-description {
	line-height: 1.6;
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.egstack-job-apply-section {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
