.hts-job-tabs {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.hts-job-tabs .job-tab-buttons {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 25%;
  background: #f4f4f4;
  border-right: 1px solid #ccc;
}

.hts-job-tabs .job-tab-buttons li {
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  font-weight: 500;
}

.hts-job-tabs .job-tab-buttons li.active {
  background: #fff;
  font-weight: 700;
  color: #2e7d32;
}

.hts-job-tabs .job-tab-contents {
  width: 75%;
  padding: 20px;
}

.hts-job-tabs .tab-content {
  display: none;
}

.hts-job-tabs .tab-content.active {
  display: block;
}
.hts_tag div {
    display: inline-block;
    margin-right: 25px;
    font-family: monospace;
}
a.hts-apply-btn {
    margin-top: 20px;
    display: inline-block;
}
input[readonly] {
    background-color: #f7f7f7 !important;
    cursor: not-allowed;
    border: 0 !important;
}
.elementor-field-type-upload label {
    height: auto;
    margin: 10px 0px;
    overflow: visible;
    padding: 0;
    position: relative;
    top: 0px;
    width: unset;
}
.elementor-button-spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #000;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .hts-job-tabs {
    flex-direction: column;
  }

  .hts-job-tabs .job-tab-buttons {
    width: 100%;
  }

  .hts-job-tabs .job-tab-contents {
    width: 100%;
  }
}