/* popup css for job apply button  */
.wpcf7-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.wpcf7-submit {
  background: #7cb342;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wpcf7-submit:hover {
  background: #5e8e2d;
}
/* end popup css here  */


a.btn.apply-now-btn {
    background: #8cb63c;
    color: #ffff;
}

a.btn.apply-now-btn:hover {
    background: var(--brand-secondary);
    color: #ffff;
}

.select-options {
    background-color: #2a2f33;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-left: 0px !important;
    line-height: 1.5em;
}

/* =============== FILTER FORM =============== */
.job-search-form input[type="text"] {
    width: 32% !important;
    border: 1px solid grey;
}

.job-search-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.select-filter{
    display: flex;
    flex-wrap: wrap;
    position:initial !important;
    flex-direction: row;
    justify-content: flex-start;
    width:100% !important;
   column-gap:10px;
    row-gap:0px;
    height:150px;
    padding:0px !important;
}
.select-filter .select {
    position: relative;
    top: 40px;
    height: 50px;
    left: 0px;
    width: 32%;
    border: solid 1px grey;
    margin-left: 0px;
}


/* =============== JOB LIST =============== */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-item {
  background: #fff;
  border: 1px solid #e3e3e3;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.job-item:hover {
  border-color: #7cb342;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.job-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.job-item h3 a {
  color: #7cb342;
  text-decoration: none;
}

.job-item h3 a:hover {
  text-decoration: underline;
}

.job-item p {
  margin: 6px 0;
  color: #555;
}

/* =============== BADGES =============== */
.job-item strong {
  background: #eee;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-right: 5px;
  display: inline-block;
}

/* =============== PAGINATION =============== */
.pagination {
  margin-top: 25px;
  text-align: center;
}

.pagination .page-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  margin: 0 4px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination .page-btn:hover {
  background: #7cb342;
  color: #fff;
  border-color: #7cb342;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 768px) {
  #job-filter-form {
    flex-direction: column;
  }
  #job-filter-form input[type="text"],
  #job-filter-form select {
    width: 100%;
  }
}
