
.job-listings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.job-item {
  border: 1px solid var(--wp--preset--color--contrast-3, #ddd);
  border-radius: 8px;
  padding: 20px;
  background-color: var(--wp--preset--color--base);
}
.job-item a {
  text-decoration: none;
}
.job-item h3 {
  margin-top: 0;
}
.details-button {
    background-color: #63BC52;
    border:0px;
    font-size: 16px;
    font-weight: 600;
    color: white;
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 50px;
}
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}
.popup-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #000000;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  border-radius: 10px;
}
.popup-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.job-category-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}
.job-category-tabs a {
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.job-category-tabs a.active {
  border-color: currentColor;
}

.single-job_listing .job-detail-container h2,
.single-job_listing .page-container h2 {
  display: none !important;
}

label {
    color: white !important;
}

.popup-close {
       color: white !important;
}