.job-search-container {
    display: flex;
    justify-content: space-between;
}
.search-bar {
    width: 35%;
	padding: 20px 20px 50px 20px;
    background: #D8EEFF;
    border-radius: 15px;
}
.search-bar h4{
	color: #002F85;
    font-family: "Inter", Sans-serif;
    font-size: 30px;
	line-height: 40px;
    font-weight: 700;
}
#sort-order{
	border: none;
}
#job-search{
	height: 46px;
    border-radius: 15px;
    margin-bottom: 20px;
	margin-top: 10px;
}
.job-category{
	color: #63666A;
	font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
	background: #C7E6FF;
	border-radius: 24px;
	padding: 5px 20px;
    width: max-content;
}
.job-item h2{
	color: #002F85;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
	line-height: 40px;
    font-weight: 700;
}
.job-content {
    width: 60%;
}
a.job-content{
	display: flex;
	gap: 10px;
	color: #63666A;
	font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
	width: fit-content;
}
.job-item {
	margin-top: 20px;
    margin-bottom: 20px;
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
	padding: 20px;
    border-radius: 15px;	
}
.pagination {
    margin-top: 20px;
}
.page-numbers {
    cursor: pointer;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #ddd;
}
.job-category-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
	color: #002F85;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
	border-style: solid;
    border-width: 1px 0;
    border-color: #fff;
	padding: 10px 0px;
}
.sorting{
	display: flex;
	justify-content: flex-end;
    align-items: center;

}
.sorting h4{
	width: fit-content;
	color: #63666A;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.sorting #sort-order{
	width: fit-content;
	color: #63666A;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
	box-shadow: none;
}
.job-category-label input[type="checkbox"] {
    margin-left: 10px;
}
.pagination{
	text-align: center;
}
.pagination .page-numbers {
	color: #63666A;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 700;
	background: transparent;
	border: 1px solid #63666A;
}
#loader {
    text-align: center;
    margin: 20px 0;
}

#loader img {
    width: 50px;  /* Adjust size */
    height: 50px;
}
@media only screen and (max-width: 1024px){
	.search-bar {
		width: 40%;
	}
	.job-content {
    	width: 55%;
	}
	.search-bar h4{
		font-size: 24px;
		line-height: 34px;
	}
	.job-category{
		font-size: 16px;
	}
	.job-item h2{
		font-size: 16px;
	}
	a.job-content{
		font-size: 16px;
	}
	.job-category-label {
		font-size: 16px;
	}
	.sorting h4{
		font-size: 16px;
	}
	.sorting #sort-order{
		font-size: 16px;
	}
	.pagination .page-numbers {
		font-size: 16px;
	}
}
@media only screen and (max-width: 480px){
	.job-search-container {
		display: block;
	}
	.search-bar {
		width: 100%;
	}
	.job-content {
    	width: 100%;
	}
}