.wljp input[type=number], .wljp select.form-control:not([size]):not([multiple]) {
	height: unset;
	line-height: unset;
}
.wljp-signup-heading, .wljp-login-heading, .wljp-cv-heading, .wljp-company-heading, .wljp-account-heading {
	font-size: 18px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 20px;
}
.wljp-cv-section-heading {
	font-size: 17px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
}
.wljp .wljp-search-button {
    cursor: pointer;
}
.wljp .fs-wrap {
    width: 100%;
}
.wljp .candidate_remove_label {
    color: #f03;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
}
.wljp .wljp_row_add_more {
	margin-top: 20px;
	font-size: 1em;
}
.wljp-signup-heading ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.wljp-signup-heading ul li {
	float: left;
}
.wljp-signup-heading li a {
  display: block;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}
.wljp-signup-heading li a.active {
	color: #333;
}
.wljp-candidate-key {
	font-weight: bold;
}
.wljp-change-password-email {
	display: none;
}
.wljp-recruiter-details ul li {
	list-style: none;
}
.wljp-signup-verify-form{
	display: none;
}
/* ✅ Grille principale */
.wljp-job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ✅ Carte */
.wljp-job-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.wljp-job-card:hover {
  transform: translateY(-3px);
}

/* ✅ Bouton */
.apply-btn {
  display: inline-block;
  margin-top: 15px;
  background: #215387;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.apply-btn:hover {
  background: #16385b;
}

/* ✅ Responsive */
@media (max-width: 1024px) {
  .wljp-job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .wljp-job-grid {
    grid-template-columns: 1fr;
  }
}
