
.job-detail-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.job-header {
  border-bottom: 1px solid #e5e5e5;
}

.job-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tags .badge {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
}

.apply-btn-wrapper .btn {
  font-weight: 500;
  padding: 10px 20px;
}

@media (min-width: 992px) {
  .apply-btn-wrapper {
    position: sticky;
    top: 100px;
  }
}

.job-tabs {
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}

.job-tabs .nav-link {
  border: none;
  color: #666;
  font-weight: 500;
  padding: 10px 15px;
}

.job-tabs .nav-link.active {
  background: none;
}

.job-tab-content {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.meta-card {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 10px;
  height: 100%;
  border: 1px solid #eee;
}

.meta-card small {
  display: block;
  color: #888;
  margin-bottom: 5px;
  font-size: 12px;
}

.meta-card p {
  margin: 0;
  font-weight: 500;
  color: #222;
}

.job-meta {
  margin-top: 30px;
}

@media (max-width: 991px) {

  .job-title {
    font-size: 26px;
  }

  .apply-btn-wrapper {
    width: 100%;
  }

  .apply-btn-wrapper .btn {
    width: 100%;
  }

}

@media (max-width: 768px) {

  .job-title {
    font-size: 22px;
  }

  .job-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .job-tabs .nav-item {
    flex: 0 0 auto;
  }

  .job-tabs .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }

  .job-tab-content {
    font-size: 14px;
  }

  .meta-card {
    padding: 12px;
  }

}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  transition: all 0.2s ease;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.job-card h5 {
  font-weight: 600;
  color: #222;
}

.job-meta div {
  margin-bottom: 5px;
}

.job-apply-header {
  margin-bottom: 30px;
}

.job-title {
  font-size: 28px;
  font-weight: 600;
}

.job-tags .badge {
  margin-right: 5px;
  padding: 6px 10px;
  border-radius: 6px;
}

.stepper-wrapper {
  position: relative;
}

.stepper-wrapper::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.step-item {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid ;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-weight: 600;
}

.step-item.active .step-circle {
  background: #1B8354;
  color: #fff;
  border: 2px solid #fff;
}

.step-label {
  font-size: 14px;
}

.step-item.completed .step-circle {
  color: #fff;
}

.job-application-form .form-item {
  margin-bottom: 10px;
}

.job-application-form input,
.job-application-form select {
  height: 48px;
  border-radius: 8px;
}

.job-application-form label {
  font-weight: 500;
  margin-bottom: 5px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.form-check label {
  margin: 0;
  font-weight: 500;
}