.blog-container,
.single-post-container
{
	padding: 0px;
  max-width: 70%; 
  margin-right: 15%;
  margin-left: 15%;
}

.blog-thumbnail
{
	  width: 90%;
	  height: 300px;
	  padding: 10px;
	  margin: auto;
	  object-fit: cover; 
}

.blog-listing-item-single-column
{
	display: block; 
	flex: 0 0 calc(50% - 10px); /* Each item takes up 50% of the container's width minus margin */
}

.toggleSeeMoreButton
{
	padding: 10px 20px;
	background-color: #f4f4f4;
	width: fit-content;
	font-family: 'Roboto Slab', serif; /* Use Roboto Slab font */
	font-weight: 600;
	margin: 10px 0;
	cursor: pointer;
	user-select: none;
	border-left: 10px solid #ffd400;
	transition: border-left 0.5s ease, width 0.5s ease, background-color 0.5s ease;
}

.toggleSeeMoreButton.active
{ 
	background-color: #ffd400;
	width: fit-content;  
	border-left: 0px solid #ffd400;
}

.toggleSeeMoreButton h2
{
	margin: 0;
}

.apply-button div
{
	padding: 10px 10px 10px 20px;
	background-color: #dfe0e1;
	width: fit-content;
	font-family: 'Roboto Slab', serif; /* Use Roboto Slab font */
	font-weight: 600;
	margin: 30px 0 50px 0;
	cursor: pointer;
	user-select: none; 
}

.apply-button a
{
	
	text-decoration: none;
	color: inherit;
}

.apply-button :hover
{ 
	background-color: #ffd400; 
}


.blog-listing-item-single-column span
{
	margin-right: 10px;
	
}


.blog-listing-item-two-column
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 50px 0;
	border-bottom: 2px white solid;
}

.blog-listing-item-two-column a
{
	color: inherit;
	text-decoration: none;
}

.blog-listing-item-two-column p
{ 
	text-decoration: underline;
}



.odd
{
	background-color: inherit;
}

.even
{
	background-color: inherit;
}


.more-content 
{ 
	  padding-left: 20px;
	  border-left: 5px solid #dfe0e1;
	  max-height: 0;
	  overflow: hidden;
	  transition: max-height 0.5s ease;
	  padding-top: 17px;
}

.more-content.show {
	max-height: 1000px; /* Set a large enough value to accommodate content */
}

.no-job-message
{
	padding: 20px;
	background: white;
	width: 80%;
	margin: 40px 0;
	border-top: 10px solid #ffd400;
}


.no-job-message a
{
	text-decoration: none;
	color: #626264;
}

.no-job-message h2
{
	margin-top: 0;
	
}

.no-job-message span
{
	white-space: nowrap; 
}

.no-job-message .profile-social-icons
{ 
	display: flex;  
}
 
.no-job-message .profile-social-icons span
{  
		font-family: Arial, 'sans-serif';
	  color: black;
	  font-size: 14px;
	  font-weight: normal;
	  margin: 10px 8px;
  	line-height: 0;
	text-decoration: underline;
} 

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a,
.pagination span {
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
  color: inherit;
}

.pagination .current {
      background-color: #ffd400;
	  color: #020202;
}
 
.error-404 
{
	height: 300px;
}

.step-contiainer
{
	width: 100%;
}

.step
{
	font-family: 'Roboto Slab', serif; /* Use Roboto Slab font */
	padding: 20px;
	background-color: #ffd400;
}

.step h2
{
	margin:0;
}

.step-description
{
	padding:10px 0px 39px 0px;
	line-height: auto;
}

.step-description p
{
	line-height: 1.6;
}

