/**
 * Post Job v2 — Step 1 (full-page employer flow)
 */
.jp-page {
    min-height: 100vh;
    background: var(--jw-employer-bg, #f1f5f9);
    font-family: var(--jw-employer-font, 'Plus Jakarta Sans', system-ui, sans-serif);
    color: var(--jw-employer-text, #0f172a);
}

.jp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #fff;
    border-bottom: 1px solid var(--jw-employer-border, #e2e8f0);
    position: sticky;
    top: 0;
    z-index: 100;
}

.jp-topbar__left,
.jp-topbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jp-topbar__back,
.jp-topbar__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--jw-employer-border, #e2e8f0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--jw-employer-text, #0f172a);
    text-decoration: none;
    background: #fff;
    transition: background 0.2s;
}

.jp-topbar__back:hover,
.jp-topbar__close:hover {
    background: #f8fafc;
    text-decoration: none;
    color: var(--jw-employer-text, #0f172a);
}

.jp-topbar__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.jp-topbar__support {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--jw-employer-muted, #64748b);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.jp-topbar__support:hover {
    color: var(--jw-employer-primary, #0a65cc);
    text-decoration: none;
}

.jp-page-container {
    padding-left: 15px;
    padding-right: 15px;
}

.jp-shell {
    /* max-width: 920px; */
    margin: 0 auto;
    padding: 24px 0 48px;
}

.jp-card {
    background: #fff;
    border-radius: var(--jw-employer-radius, 16px);
    box-shadow: var(--jw-employer-shadow, 0 1px 2px rgba(15, 23, 42, 0.06));
    padding: 28px 32px 32px;
}

.jp-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.jp-card__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.jp-toast {
    display: none;
    width: 100%;
    margin: 0 0 20px;
    padding: 15px 40px 15px 15px;
    border-radius: var(--jw-employer-radius-sm, 10px);
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.jp-toast .close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    float: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: inherit;
    opacity: 0.5;
    text-shadow: none;
}

.jp-toast .close:hover,
.jp-toast .close:focus {
    opacity: 0.8;
    color: inherit;
}

.jp-btn-templates {
    border: 1px solid var(--jw-employer-border, #e2e8f0);
    background: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--jw-employer-muted, #64748b);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Stepper */
.jp-stepper {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 4px;
}

.jp-stepper__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jp-stepper__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
}

.jp-stepper__item.is-active .jp-stepper__dot {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #fff;
}

.jp-stepper__item.is-done .jp-stepper__dot {
    border-color: #16a34a;
    background: #16a34a;
    color: #fff;
    font-size: 0;
}

.jp-stepper__item.is-done .jp-stepper__dot::after {
    content: '\f00c';
    font-family: FontAwesome;
    font-size: 14px;
    font-weight: normal;
}

.jp-stepper__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--jw-employer-text, #0f172a);
}

.jp-stepper__line {
    flex: 1;
    min-width: 24px;
    max-width: 48px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 4px;
}

/* Sections */
.jp-section {
    margin-bottom: 8px;
}

.jp-section__title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}

.jp-section__desc {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--jw-employer-muted, #64748b);
}

.jp-divider {
    border: 0;
    border-top: 1px solid var(--jw-employer-border, #e2e8f0);
    margin: 28px 0;
}

.jp-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--jw-employer-text, #0f172a);
}

.jp-label--sm {
    font-size: 13px;
    color: var(--jw-employer-muted, #64748b);
    font-weight: 500;
}

.jp-req {
    color: #ef4444;
}

.jp-req--note {
    display: block;
    margin-top: 8px;
}

.jp-field {
    margin-bottom: 20px;
}

.jp-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--jw-employer-text, #0f172a);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.jp-input:focus {
    outline: none;
    border-color: var(--jw-employer-primary, #0a65cc);
    box-shadow: 0 0 0 3px var(--jw-employer-primary-soft, #eff6ff);
}

.jp-input--disabled,
.jp-input:disabled {
    background: #f1f5f9;
    color: var(--jw-employer-muted, #64748b);
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.jp-input--disabled:focus,
.jp-input:disabled:focus {
    border-color: #e2e8f0;
    box-shadow: none;
}

.jp-input.is-error {
    border-color: #ef4444;
}

.jp-input-wrap {
    position: relative;
}

.jp-input-wrap--change .jp-input {
    padding-right: 88px;
}

.jp-input-change {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #0d9488;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
}

.jp-input-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
}

.jp-input-wrap--chevron .jp-input {
    padding-right: 36px;
}

.jp-input-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.jp-input-chevron--map {
    font-size: 15px;
}

.jp-title-field__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.jp-title-field__head .jp-label {
    margin-bottom: 0;
}

.jp-btn-draft-ai {
    border: 0;
    border-radius: 10px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--jw-employer-primary, #0a65cc);
    cursor: pointer;
    white-space: nowrap;
    min-width: 118px;
}

.jp-btn-draft-ai:hover:not(:disabled) {
    background: #0956ad;
}

.jp-btn-draft-ai:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.jp-title-row .jp-hint-inline {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-combobox {
    position: relative;
}

.jp-input-wrap--clear .jp-input {
    padding-right: 40px;
}

.jp-title-clear {
    display: none;
}

.jp-title-clear.is-visible {
    display: inline-flex;
}

.jp-combobox__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 120;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    max-height: 280px;
    overflow-y: auto;
}

.jp-combobox__item {
    display: block;
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--jw-employer-text, #0f172a);
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}

.jp-combobox__item:last-child {
    border-bottom: 0;
}

.jp-combobox__item:hover,
.jp-combobox__item.is-active {
    background: #f8fafc;
}

.jp-combobox__item--add {
    color: #0d9488;
    font-weight: 600;
    border-top: 1px solid #e2e8f0;
}

.jp-combobox__empty {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--jw-employer-muted, #64748b);
}

.jp-hint-inline i {
    margin-right: 4px;
}

/* Pills */
.jp-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.jp-pill {
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s;
}

.jp-pill:hover {
    border-color: var(--jw-employer-primary, #0a65cc);
}

.jp-pill.is-selected {
    border-color: var(--jw-employer-primary, #0a65cc);
    background: var(--jw-employer-primary-soft, #eff6ff);
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-pill-compound {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.15s, background 0.15s;
}

.jp-pill-compound:hover {
    border-color: var(--jw-employer-primary, #0a65cc);
}

.jp-pill-compound:has(.jp-pill.is-selected) {
    border-color: var(--jw-employer-primary, #0a65cc);
    background: var(--jw-employer-primary-soft, #eff6ff);
}

.jp-pill-compound__pill {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 10px 14px 10px 18px;
}

.jp-pill-compound__pill:hover,
.jp-pill-compound__pill.is-selected {
    border-color: transparent;
    background: transparent;
}

.jp-pill-compound:has(.jp-pill.is-selected) .jp-pill-compound__pill {
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-pill-compound__info-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    background: #f1f5f9;
    border-left: 1px solid #e2e8f0;
    padding: 0 12px;
    flex-shrink: 0;
}

.jp-pill-compound:has(.jp-pill.is-selected) .jp-pill-compound__info-tab {
    background: #dbeafe;
    border-left-color: #bfdbfe;
}

.jp-pill-compound:has(.jp-pill.is-selected) .jp-pill-info {
    background: var(--jw-employer-primary, #0a65cc);
}

.jp-pill--with-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow: visible;
}

.jp-pill__info-wrap,
.jp-pill--with-info .jp-tooltip-wrap {
    overflow: visible;
}

.jp-pill__label {
    min-width: 0;
}

.jp-pill__info-wrap {
    flex-shrink: 0;
    margin-left: 2px;
}

.jp-pill-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #64748b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.jp-pill--with-info.is-selected .jp-pill-info {
    background: var(--jw-employer-primary, #0a65cc);
}

#jp_addon_distance.jp-addon-panel {
    overflow: visible;
}

#jp_addon_distance .jp-addon-panel__body {
    overflow: visible;
}

.jp-tooltip.jp-tooltip--pill-info {
    width: auto;
    min-width: 220px;
    max-width: 320px;
    height: auto;
    overflow: visible;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: left;
    line-height: 1.45;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 1300;
}

.jp-tooltip.jp-tooltip--pill-info.jp-tooltip--fixed {
    position: fixed;
    bottom: auto;
    right: auto;
    transform: none;
    margin: 0;
}

.jp-tooltip.jp-tooltip--pill-info::after {
    top: 50%;
    left: 100%;
    margin-top: -6px;
    margin-left: 0;
    border: 6px solid transparent;
    border-left-color: #0f172a;
    border-top-color: transparent;
}

.jp-tooltip.jp-tooltip--pill-info.is-flipped::after {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 0;
    border-left-color: transparent;
    border-right-color: #0f172a;
}

.jp-pill-group--stack {
    flex-direction: column;
    align-items: stretch;
}

.jp-pill-group--stack .jp-pill {
    border-radius: 10px;
    text-align: left;
    width: 100%;
}

/* Radio buttons (step 3 and conditional follow-ups) */
.jp-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: center;
}

.jp-radio-group--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.jp-radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: #334155;
    margin: 0;
    user-select: none;
}

.jp-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--jw-employer-primary, #0a65cc);
    cursor: pointer;
    flex-shrink: 0;
}

.jp-radio__label {
    line-height: 1.4;
}

.jp-step3-followup {
    margin-top: 16px;
    width: 100%;
}

.jp-walk-in-fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jp-field-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.jp-field-row--dates .jp-field--half {
    flex: 1 1 220px;
    min-width: 0;
}

.jp-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: #fff;
}

.jp-time-range {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.jp-time-range .jp-input-wrap {
    flex: 1 1 140px;
    min-width: 120px;
    max-width: 200px;
}

.jp-time-range__sep {
    color: #64748b;
    font-weight: 500;
}

.jp-textarea-wrap {
    position: relative;
}

.jp-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 14px 16px 36px;
    font-size: 15px;
    line-height: 1.5;
    color: #334155;
    resize: vertical;
    font-family: inherit;
}

.jp-textarea:focus {
    outline: none;
    border-color: var(--jw-employer-primary, #0a65cc);
    box-shadow: 0 0 0 3px var(--jw-employer-primary-soft, #eff6ff);
}

.jp-char-count {
    position: absolute;
    right: 14px;
    bottom: 10px;
    font-size: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.jp-notice-banner {
    margin-top: 10px;
    padding: 10px 14px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 8px;
    font-size: 13px;
    color: #5b21b6;
    line-height: 1.45;
}

.jp-notice-banner--match {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 14px;
}

.jp-notice-banner__icon {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.4;
}

.jp-notice-banner__text {
    margin: 0;
}

.jp-notice-banner__text .jp-link-inline {
    margin-left: 4px;
}

.jp-whatsapp-icon {
    color: #25d366;
    margin: 0 4px;
}

.jp-email-icon {
    color: var(--jw-employer-primary, #0a65cc);
    margin: 0 4px;
}

.jp-subsection__title {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.jp-recruiter-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jp-radio.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.jp-radio.is-disabled input[type="radio"] {
    cursor: not-allowed;
}

.jp-radio.is-disabled .jp-radio__label {
    color: #94a3b8;
}

#jp_walk_in_contact_notice {
    margin-top: 8px;
    margin-bottom: 0;
}

.jp-walk-in-address-combobox .jp-input-wrap--change .jp-input[readonly] {
    background: #fff;
    cursor: default;
}

.jp-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    vertical-align: middle;
    margin-left: 6px;
}

.jp-badge--new {
    background: #dbeafe;
    color: #1d4ed8;
}

.jp-link-inline {
    font-size: 13px;
    font-weight: 600;
    color: var(--jw-employer-primary, #0a65cc);
    margin-left: 8px;
    text-decoration: none;
}

.jp-link-inline:hover {
    text-decoration: underline;
}

.jp-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 4px;
}

.jp-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--jw-employer-primary, #0a65cc);
}

.jp-text-link {
    border: 0;
    background: none;
    color: #0d9488;
    font-weight: 600;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
}

.jp-link-row {
    margin: 8px 0 16px;
}

.jp-info-btn {
    border: 0;
    background: none;
    color: #94a3b8;
    padding: 0 4px;
    cursor: pointer;
    vertical-align: middle;
}

.jp-tooltip-wrap {
    position: relative;
    display: inline-flex;
}

.jp-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    padding: 10px 14px;
    border-radius: 8px;
    width: 280px;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.jp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: #0f172a;
}

.jp-tooltip.jp-tooltip--info-hover.jp-tooltip--fixed {
    position: fixed;
    bottom: auto;
    right: auto;
    transform: none;
    margin: 0;
    width: auto;
    min-width: 180px;
    max-width: 300px;
    pointer-events: none;
    z-index: 1300;
    white-space: normal;
    text-align: left;
}

.jp-tooltip.jp-tooltip--info-hover.is-below::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #0f172a;
}

/* Map */
.jp-office-address-combobox .jp-input-wrap--change .jp-input[readonly] {
    padding-right: 40px;
}

.jp-warn-banner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 12px 0 16px;
    padding: 14px 16px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
}

.jp-warn-banner__icon {
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.jp-warn-banner__text {
    margin: 0;
    font-size: 14px;
    color: #92400e;
    line-height: 1.5;
}

.jp-map-wrap {
    margin-top: 16px;
    border: 1px solid var(--jw-employer-primary, #0a65cc);
    border-radius: 12px;
    overflow: hidden;
}

.jp-map {
    width: 100%;
    height: 260px;
    background: #e2e8f0;
}

/* Info banner */
.jp-info-banner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 14px 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
}

.jp-info-banner__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--jw-employer-primary, #0a65cc);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.jp-info-banner__text {
    margin: 0;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.5;
}

.jp-btn-location {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.jp-btn-location--geo {
    background: #0d9488;
    color: #fff;
}

.jp-btn-location--geo:hover {
    background: #0f766e;
}

/* Salary */
.jp-salary-input-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    overflow: visible;
    position: relative;
    box-sizing: border-box;
}

.jp-salary-input-row:focus-within {
    border-color: var(--jw-employer-primary, #0a65cc);
    box-shadow: 0 0 0 3px rgba(10, 101, 204, 0.12);
}

.jp-salary-input-row.is-error {
    border-color: #ef4444;
}

.jp-salary-currency-picker {
    position: relative;
    flex: 0 0 72px;
    min-width: 72px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.jp-salary-currency-picker__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #334155;
}

.jp-salary-currency-picker__symbol {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.jp-salary-currency-picker__chevron {
    font-size: 10px;
    color: #94a3b8;
    transition: transform 0.15s;
}

.jp-salary-currency-picker__toggle[aria-expanded="true"] .jp-salary-currency-picker__chevron {
    transform: rotate(180deg);
}

.jp-salary-currency-picker__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 1200;
    min-width: 148px;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.15);
    padding: 6px;
}

.jp-salary-currency-picker__menu.is-open {
    display: block;
}

.jp-salary-currency-picker__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 9px 10px;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    color: #334155;
    text-align: left;
}

.jp-salary-currency-picker__option:hover,
.jp-salary-currency-picker__option.is-selected {
    background: var(--jw-employer-primary-soft, #eff6ff);
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-salary-currency-picker__option-symbol {
    font-size: 15px;
    font-weight: 700;
    min-width: 1.5em;
}

.jp-salary-currency-picker__option-code {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
}

.jp-salary-range {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 100%;
    flex: 1 1 auto;
    min-width: 0;
}

.jp-salary-range--with-currency {
    border: 0;
    border-radius: 0;
}

.jp-salary-range .jp-input,
.jp-salary-input-row > .jp-salary-input--single {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent;
    flex: 1;
    min-width: 0;
}

.jp-salary-input-row > .jp-salary-input--single {
    min-height: 44px;
}

.jp-salary-input-row > .jp-salary-input--single:focus,
.jp-salary-range .jp-input:focus {
    outline: none;
    box-shadow: none !important;
}

.jp-salary-range .jp-input:first-child {
    border-radius: 0;
}

.jp-salary-range .jp-input:last-child {
    border-radius: 0 10px 10px 0;
}

.jp-comp-split__col .jp-salary-input-row + .jp-input.jp-salary-input,
.jp-comp-split__col > .jp-input.jp-salary-input {
    margin-top: 0;
}

@media (max-width: 480px) {
    .jp-salary-currency-picker {
        flex: 0 0 64px;
        min-width: 64px;
    }

    .jp-salary-currency-picker__toggle {
        padding: 0 8px;
        gap: 4px;
    }
}

.jp-salary-range__sep {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    background: #f1f5f9;
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
    font-size: 14px;
    color: #64748b;
    flex-shrink: 0;
}

.jp-comp-split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 16px;
}

.jp-comp-split__col {
    flex: 1 1 240px;
    min-width: 200px;
}

.jp-comp-split__plus {
    font-size: 28px;
    font-weight: 300;
    color: #94a3b8;
    padding-bottom: 12px;
}

.jp-salary-breakup {
    margin-top: 16px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 16px 18px;
}

.jp-salary-breakup__title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #92400e;
}

.jp-salary-breakup__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: #78350f;
    margin-bottom: 8px;
}

.jp-salary-breakup__row--total {
    margin-bottom: 0;
    margin-top: 4px;
    font-weight: 700;
}

.jp-field-errors {
    margin-top: 8px;
}

.jp-field-error-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #ef4444;
    font-size: 13px;
    margin-bottom: 4px;
}

.jp-field-error-item i {
    margin-top: 2px;
}

.jp-field-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
}

.jp-joining-fee-followup {
    margin-top: 4px;
    padding-top: 4px;
}

.jp-fee-amount-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 280px;
}

.jp-fee-amount-wrap__prefix {
    font-size: 16px;
    font-weight: 600;
    color: var(--jw-employer-text, #0f172a);
    flex-shrink: 0;
}

.jp-fee-amount-input {
    flex: 1;
    min-width: 0;
}

.jp-fee-amount-input.is-invalid,
.jp-select.is-invalid {
    border-color: #ef4444;
}

.jp-asset-picker-field {
    position: relative;
    max-width: 360px;
}

.jp-asset-picker-trigger {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 40px 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s;
}

.jp-asset-picker-trigger:hover {
    border-color: #94a3b8;
}

.jp-asset-picker-field.is-open .jp-asset-picker-trigger {
    border-color: var(--jw-employer-primary, #0a65cc);
}

.jp-asset-picker-trigger.is-invalid {
    border-color: #ef4444;
}

.jp-asset-picker-trigger:not(.has-value) .jp-asset-picker-trigger__text {
    color: #94a3b8;
}

.jp-asset-picker-trigger__text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-asset-picker-trigger__caret {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #94a3b8;
    pointer-events: none;
}

.jp-asset-picker {
    max-width: 360px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.jp-asset-picker--dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    max-width: none;
}

.jp-asset-picker__list {
    padding: 8px 0;
}

.jp-asset-picker__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 0;
    cursor: pointer;
    font-size: 15px;
    color: #0f172a;
    transition: background 0.15s;
}

.jp-asset-picker__item:hover {
    background: #f8fafc;
}

.jp-asset-picker__item.is-active {
    background: #f1f5f9;
}

.jp-asset-picker__checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--jw-employer-primary, #0a65cc);
    flex-shrink: 0;
}

.jp-asset-picker__label {
    line-height: 1.4;
}

.jp-asset-picker__other {
    padding: 4px 16px 12px 46px;
    background: #f1f5f9;
}

.jp-asset-picker__other-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.jp-asset-picker__other .jp-input.is-invalid {
    border-color: #ef4444;
}

.jp-btn-asset-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 4px 16px 16px;
    border: 0;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #0d9488;
    cursor: pointer;
    transition: background 0.2s;
}

.jp-btn-asset-save:hover {
    background: #0f766e;
}

/* Perks */
.jp-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

#jp_custom_perks_list.jp-perks {
    margin-top: 0;
}

.jp-perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 8px 14px;
    background: #fff;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s;
}

.jp-perk i {
    font-size: 12px;
    color: #94a3b8;
}

.jp-perk.is-selected {
    border-color: var(--jw-employer-primary, #0a65cc);
    background: var(--jw-employer-primary-soft, #eff6ff);
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-perk.is-selected i.fa-plus::before {
    content: '\f00d';
}

.jp-custom-perk-row {
    margin-top: 12px;
}

.jp-custom-perk-input-wrap {
    position: relative;
}

.jp-custom-perk-input-wrap .jp-input {
    padding-right: 72px;
}

.jp-custom-perk-add {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #0d9488;
    font-weight: 700;
    cursor: pointer;
}

/* Footer CTA */
.jp-form-footer {
    margin-top: 32px;
    text-align: center;
}

.jp-btn-continue {
    width: 100%;
    max-width: 420px;
    border: 0;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #0d9488;
    cursor: pointer;
    transition: background 0.2s;
}

.jp-btn-continue:hover {
    background: #0f766e;
}

.jp-btn-continue:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.jp-optional {
    font-weight: 500;
    color: var(--jw-employer-muted, #64748b);
    font-size: 14px;
}

.jp-add-req {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.jp-add-req__chip {
    border: 1px dashed #cbd5e1;
    background: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--jw-employer-text, #0f172a);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.jp-add-req__chip:hover {
    border-color: var(--jw-employer-primary, #0a65cc);
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-add-req__chip.is-active {
    border: 1px solid var(--jw-employer-primary, #0a65cc);
    border-style: solid;
    background: #eff6ff;
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-add-req__chip.is-hidden {
    display: none !important;
}

.jp-add-req__chip-icon {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

.jp-addon-panel {
    margin-bottom: 16px;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.jp-addon-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid #f1f5f9;
}

.jp-addon-panel__title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--jw-employer-text, #0f172a);
}

.jp-addon-panel__close {
    border: 0;
    background: none;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
}

.jp-addon-panel__close:hover {
    color: #64748b;
    background: #f1f5f9;
}

.jp-addon-panel__body {
    padding: 12px 16px 16px;
}

.jp-addon-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 16px 16px;
    padding: 12px 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 14px;
    color: #92400e;
}

.jp-addon-warning .fa-exclamation-triangle {
    margin-top: 2px;
    color: #d97706;
}

.jp-addon-warning--reduce {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.jp-addon-warning--reduce .fa {
    color: #dc2626;
}

.jp-distance-note {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--jw-employer-muted, #64748b);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px;
}

.jp-distance-note > .fa-info-circle {
    margin-top: 2px;
    flex-shrink: 0;
}

.jp-distance-note__link {
    margin-left: 4px;
    color: var(--jw-employer-primary, #0a65cc);
    font-weight: 600;
    text-decoration: none;
}

.jp-distance-note__link:hover {
    text-decoration: underline;
}

.jp-age-split {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 360px;
}

.jp-age-split__field {
    flex: 1;
    min-width: 0;
}

.jp-age-split__field .jp-input {
    text-align: center;
    border-radius: 10px;
}

.jp-age-split__field .jp-input.is-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 1px #ef4444;
}

.jp-age-split__to {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    height: 46px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--jw-employer-muted, #64748b);
}

.jp-age-inline-error {
    margin: 6px 0 0;
    font-size: 13px;
    color: #ef4444;
    line-height: 1.3;
}

.jp-age-inline-error .fa {
    margin-right: 4px;
}

.jp-age-hint {
    margin: 10px 0 0;
    font-size: 13px;
    color: #b45309;
}

.jp-age-hint .fa {
    margin-right: 4px;
    color: #d97706;
}

.jp-picker__selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    min-height: 0;
}

.jp-picker__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.jp-picker__chip-label {
    line-height: 1.2;
}

.jp-picker__chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.jp-picker__chip-remove .fa {
    font-size: 11px;
    line-height: 1;
}

.jp-picker__results {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 4px;
}

.jp-picker__item {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: #fff;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.jp-picker__item:hover {
    background: #f1f5f9;
}

.jp-picker__item--add {
    color: #0d9488;
    font-weight: 600;
    border-top: 1px solid #e2e8f0;
}

.jp-picker__item--add:disabled {
    opacity: 0.6;
    cursor: wait;
}

.jp-picker__empty {
    padding: 10px 14px;
    font-size: 13px;
    color: var(--jw-employer-muted, #64748b);
}

.jp-skills-note {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--jw-employer-muted, #64748b);
}

.jp-skills-search-wrap {
    position: relative;
    margin-bottom: 12px;
}

.jp-skills-search-wrap .jp-input {
    margin-bottom: 0;
}

.jp-skills-search-wrap .jp-picker__results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    margin-top: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.jp-skills-suggest-wrap {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
}

.jp-skills-suggest-title {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
}

.jp-skills-suggest-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.jp-skills-suggest-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    color: var(--jw-employer-text, #0f172a);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 12px;
    cursor: pointer;
}

.jp-skills-suggest-chip:hover {
    border-color: var(--jw-employer-primary, #0a65cc);
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-skills-suggest-chip__icon {
    color: var(--jw-employer-primary, #0a65cc);
    font-size: 12px;
    font-weight: 700;
}

.jp-skills-suggest-toggle {
    border: 0;
    background: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--jw-employer-primary, #0a65cc);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.jp-skills-suggest-toggle:hover {
    text-decoration: underline;
}

.jp-skills-suggest-toggle .fa {
    font-size: 11px;
}

.jp-degree-picker__selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    min-height: 0;
}

.jp-degree-picker__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
}

.jp-degree-picker__chip-remove {
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

.jp-degree-picker__dropdown {
    position: relative;
    width: 100%;
    max-width: min(520px, 100%);
    margin-top: 6px;
}

.jp-degree-picker__dropdown--hidden {
    display: none !important;
}

.jp-degree-picker__dropdown:has(.has-spec-open) {
    max-width: 100%;
}

#jp_addon_degree.jp-addon-panel {
    overflow: visible;
}

#jp_addon_degree .jp-addon-panel__body {
    overflow: visible;
}

.jp-degree-picker__panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    max-height: 280px;
    width: 100%;
}

.jp-degree-picker__panels.has-spec-open {
    grid-template-columns: minmax(200px, 38%) minmax(260px, 62%);
    gap: 0;
    max-height: 300px;
}

@media (max-width: 640px) {
    .jp-degree-picker__panels.has-spec-open {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(160px, auto) minmax(180px, auto);
        max-height: none;
    }

    .jp-degree-picker__panels.has-spec-open .jp-degree-picker__main {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }
}

.jp-degree-picker__spec--hidden {
    display: none !important;
}

.jp-degree-picker__main,
.jp-degree-picker__spec {
    min-width: 0;
    min-height: 0;
    max-height: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.jp-degree-picker__panels.has-spec-open .jp-degree-picker__main,
.jp-degree-picker__panels.has-spec-open .jp-degree-picker__spec {
    max-height: 300px;
    height: 300px;
}

@media (max-width: 640px) {
    .jp-degree-picker__panels.has-spec-open .jp-degree-picker__main,
    .jp-degree-picker__panels.has-spec-open .jp-degree-picker__spec {
        max-height: 200px;
        height: 200px;
    }
}

.jp-degree-picker__panels.has-spec-open .jp-degree-picker__main {
    border-right: 1px solid #e2e8f0;
}

.jp-degree-picker__main-head,
.jp-degree-picker__spec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--jw-employer-text, #0f172a);
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
    line-height: 1.35;
}

.jp-degree-picker__spec-head {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-degree-picker__toggle-all {
    border: 0;
    background: none;
    color: var(--jw-employer-primary, #0a65cc);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.jp-degree-picker__toggle-all:hover {
    text-decoration: underline;
}

.jp-degree-picker__main-body,
.jp-degree-picker__spec-body {
    overflow-y: auto;
    padding: 8px 0;
    flex: 1;
}

.jp-degree-picker__spec-search {
    margin: 8px 10px;
    flex-shrink: 0;
    width: calc(100% - 20px);
    max-width: none;
    box-sizing: border-box;
    font-size: 13px;
}

.jp-degree-picker__group-title {
    padding: 8px 14px 4px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.jp-degree-picker__group.is-collapsed .jp-degree-picker__group-items {
    display: none;
}

.jp-degree-picker__type-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 14px;
    background: #fff;
}

.jp-degree-picker__type-row:hover,
.jp-degree-picker__type-row.is-active {
    background: #f8fafc;
}

.jp-degree-picker__type-row.is-active {
    background: #eff6ff;
}

.jp-degree-picker__type-cb {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
    accent-color: var(--jw-employer-primary, #0a65cc);
}

.jp-degree-picker__type-open {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--jw-employer-text, #0f172a);
    min-width: 0;
}

.jp-degree-picker__type-open:disabled {
    cursor: default;
    opacity: 1;
}

.jp-degree-picker__type-label {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-degree-picker__type-open .fa-chevron-right {
    color: #94a3b8;
    font-size: 12px;
    flex-shrink: 0;
}

.jp-degree-picker__spec-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 12px;
    margin: 0;
    cursor: pointer;
    font-size: 13px;
    color: var(--jw-employer-text, #0f172a);
}

.jp-degree-picker__spec-row > span {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    word-break: break-word;
}

.jp-degree-picker__spec-row:hover {
    background: #f8fafc;
}

.jp-degree-picker__spec-row input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.jp-degree-picker__spec-placeholder,
.jp-degree-picker__empty {
    padding: 16px 14px;
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.jp-age-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jp-age-row .jp-input {
    max-width: 120px;
}

.jp-age-row__sep {
    color: var(--jw-employer-muted, #64748b);
}

.jp-lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jp-lang-chip {
    border: 1px dashed #cbd5e1;
    background: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--jw-employer-text, #0f172a);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jp-lang-chip:hover {
    border-color: var(--jw-employer-primary, #0a65cc);
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-lang-chip.is-selected {
    border: 1px solid var(--jw-employer-primary, #0a65cc);
    border-style: solid;
    background: #eff6ff;
    color: var(--jw-employer-primary, #0a65cc);
}

.jp-lang-chip__icon {
    display: inline-flex;
    font-size: 12px;
}

.jp-lang-multi-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.4;
}

.jp-lang-multi-note .fa-info-circle {
    margin-top: 2px;
    color: #2563eb;
}

.jp-editor {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.jp-editor.is-invalid {
    border-color: #ef4444;
}

.jp-editor__toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.jp-editor__btn {
    border: 0;
    background: #fff;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: #334155;
}

.jp-editor__btn:hover {
    background: #e2e8f0;
}

.jp-editor__sep {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    margin: 0 4px;
}

.jp-editor__body {
    min-height: 180px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
}

.jp-editor__body:empty::before {
    content: attr(data-placeholder);
    color: #94a3b8;
    pointer-events: none;
}

.jp-hidden-textarea {
    display: none !important;
}

.jp-form-footer--split {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.jp-btn-back {
    flex: 1;
    max-width: 200px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    background: #fff;
    color: var(--jw-employer-text, #0f172a);
    cursor: pointer;
}

.jp-btn-back:hover {
    background: #f8fafc;
}

.jp-form-footer--split .jp-btn-continue {
    flex: 2;
    max-width: none;
}

.jp-info-btn--inline {
    margin-left: 4px;
    vertical-align: middle;
}

.jp-pill .jp-info-btn {
    pointer-events: auto;
}

.jp-dynamic {
    min-height: 0;
}

.jp-dynamic.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 767px) {
    .jp-card {
        padding: 20px 16px 24px;
        border-radius: 12px;
    }

    .jp-stepper__label {
        display: none;
    }

    .jp-comp-split__plus {
        display: none;
    }

    .jp-topbar {
        padding: 12px 16px;
    }

    .jp-topbar__support span {
        display: none;
    }
}

/* ================================================================
 * Industry Picker (mirrors Degree / Specialization picker)
 * ================================================================ */

.jp-industry-picker__selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    min-height: 0;
}

.jp-industry-picker__limit-note {
    font-size: 12px;
    color: #64748b;
    margin: 6px 0 0;
}

.jp-industry-picker__dropdown {
    position: relative;
    width: 100%;
    max-width: min(520px, 100%);
    margin-top: 6px;
}

.jp-industry-picker__dropdown--hidden {
    display: none !important;
}

.jp-industry-picker__chip-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.jp-industry-picker__chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(30, 64, 175, 0.12);
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.jp-industry-picker__dropdown:has(.has-sub-open) {
    max-width: 100%;
}

#jp_addon_industry.jp-addon-panel {
    overflow: visible;
}

#jp_addon_industry .jp-addon-panel__body {
    overflow: visible;
}

.jp-industry-picker__panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    max-height: 280px;
    width: 100%;
}

.jp-industry-picker__panels.has-sub-open {
    grid-template-columns: minmax(200px, 38%) minmax(260px, 62%);
    gap: 0;
    max-height: 300px;
}

@media (max-width: 640px) {
    .jp-industry-picker__panels.has-sub-open {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(160px, auto) minmax(180px, auto);
        max-height: none;
    }

    .jp-industry-picker__panels.has-sub-open .jp-industry-picker__main {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }
}

.jp-industry-picker__sub--hidden {
    display: none !important;
}

.jp-industry-picker__main,
.jp-industry-picker__sub {
    min-width: 0;
    min-height: 0;
    max-height: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.jp-industry-picker__panels.has-sub-open .jp-industry-picker__main,
.jp-industry-picker__panels.has-sub-open .jp-industry-picker__sub {
    max-height: 300px;
    height: 300px;
}

@media (max-width: 640px) {
    .jp-industry-picker__panels.has-sub-open .jp-industry-picker__main,
    .jp-industry-picker__panels.has-sub-open .jp-industry-picker__sub {
        max-height: 200px;
        height: 200px;
    }
}

.jp-industry-picker__panels.has-sub-open .jp-industry-picker__main {
    border-right: 1px solid #e2e8f0;
}

.jp-industry-picker__main-head,
.jp-industry-picker__sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--jw-employer-text, #0f172a);
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
    line-height: 1.35;
}

.jp-industry-picker__sub-head {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-industry-picker__main-body,
.jp-industry-picker__sub-body {
    overflow-y: auto;
    padding: 8px 0;
    flex: 1;
}

.jp-industry-picker__type-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 14px;
    background: #fff;
}

.jp-industry-picker__type-row:hover,
.jp-industry-picker__type-row.is-active {
    background: #f8fafc;
}

.jp-industry-picker__type-row.is-active {
    background: #eff6ff;
}

.jp-industry-picker__type-row--any {
    padding: 10px 14px;
    gap: 10px;
    cursor: pointer;
}

.jp-industry-picker__type-cb {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
    accent-color: var(--jw-employer-primary, #0a65cc);
}

.jp-industry-picker__type-open {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--jw-employer-text, #0f172a);
    min-width: 0;
}

.jp-industry-picker__type-label {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-industry-picker__type-open .fa-chevron-right {
    color: #94a3b8;
    font-size: 12px;
    flex-shrink: 0;
}

.jp-industry-picker__sub-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 12px;
    margin: 0;
    cursor: pointer;
    font-size: 13px;
    color: var(--jw-employer-text, #0f172a);
}

.jp-industry-picker__sub-row > span {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    word-break: break-word;
}

.jp-industry-picker__sub-row:hover {
    background: #f8fafc;
}

.jp-industry-picker__sub-row input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--jw-employer-primary, #0a65cc);
}

/* Walk-in learn more modal */
.jp-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.jp-modal.is-open {
    display: flex;
}

.jp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.jp-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
    padding: 24px 24px 28px;
}

.jp-modal__dialog--walk-in {
    text-align: center;
}

.jp-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 0;
    background: none;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jp-modal__close:hover {
    background: #f1f5f9;
    color: #334155;
}

.jp-modal__illustration {
    margin: 8px 0 20px;
}

.jp-walk-in-preview {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 20px 16px 24px;
}

.jp-walk-in-preview__lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    opacity: 0.45;
}

.jp-walk-in-preview__lines span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #cbd5e1;
}

.jp-walk-in-preview__lines span:nth-child(1) { width: 72%; }
.jp-walk-in-preview__lines span:nth-child(2) { width: 56%; }
.jp-walk-in-preview__lines span:nth-child(3) { width: 64%; }

.jp-walk-in-preview__card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    min-width: 220px;
}

.jp-walk-in-preview__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--jw-employer-primary, #0a65cc);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.jp-walk-in-preview__label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.jp-modal__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.jp-modal__list {
    margin: 0 0 20px;
    padding-left: 20px;
    text-align: left;
    color: #334155;
    font-size: 14px;
    line-height: 1.55;
}

.jp-modal__list li + li {
    margin-top: 10px;
}

.jp-modal__info {
    text-align: left;
    margin-bottom: 20px;
}

.jp-modal__info .jp-info-banner__text a {
    color: var(--jw-employer-primary, #0a65cc);
    text-decoration: underline;
}

.jp-modal__action {
    min-width: 180px;
}

body.jp-modal-open {
    overflow: hidden;
}

.jp-modal__dialog--distance {
    max-width: 560px;
    padding: 28px 28px 24px;
}

.jp-distance-modal__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.jp-distance-modal__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.jp-distance-modal__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--jw-employer-primary, #0a65cc);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.jp-distance-modal__icon--blocked {
    position: relative;
}

.jp-distance-modal__slash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 3px;
    margin-top: -1.5px;
    margin-left: -11px;
    background: var(--jw-employer-primary, #0a65cc);
    border-radius: 2px;
    transform: rotate(-45deg);
    pointer-events: none;
}

.jp-distance-modal__text {
    color: #334155;
    font-size: 14px;
    line-height: 1.55;
    padding-top: 6px;
}

.jp-distance-modal__footer {
    display: flex;
    justify-content: flex-end;
}

.jp-distance-modal__action {
    width: auto;
    min-width: 160px;
    padding: 12px 24px;
}

/* Step 4 — Job preview */
.jp-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jp-preview__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 16px;
    color: #64748b;
    font-size: 14px;
}

.jp-preview__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jp-preview-section {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.jp-preview-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
}

.jp-preview-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.jp-preview-section__title-wrap .fa {
    color: var(--jw-employer-primary, #0a65cc);
    font-size: 16px;
    width: 18px;
    text-align: center;
}

.jp-preview-section__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.jp-preview-section__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.jp-preview-edit,
.jp-preview-toggle {
    width: 32px;
    height: 32px;
    border: 0;
    background: none;
    color: var(--jw-employer-primary, #0a65cc);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jp-preview-edit:hover,
.jp-preview-toggle:hover {
    background: #eff6ff;
}

.jp-preview-section__summary {
    display: none;
    padding: 0 16px 14px 44px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
}

.jp-preview-section__body {
    padding: 0 16px 16px;
    border-top: 1px solid #f1f5f9;
}

.jp-preview-section.is-collapsed .jp-preview-section__body {
    display: none;
}

.jp-preview-section.is-collapsed .jp-preview-section__summary {
    display: block;
}

.jp-preview-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
}

.jp-preview-row {
    display: grid;
    grid-template-columns: minmax(120px, 38%) 1fr;
    gap: 12px 16px;
    align-items: start;
}

.jp-preview-row__label {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.jp-preview-row__value {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45;
    word-break: break-word;
}

.jp-preview-row__value--html p {
    margin: 0 0 8px;
    font-weight: 400;
}

.jp-preview-row__value--html p:last-child {
    margin-bottom: 0;
}

.jp-preview-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 13px;
    line-height: 1.45;
}

.jp-preview-notice .fa {
    margin-top: 2px;
}

.jp-preview-subsection {
    margin-top: 14px;
}

.jp-preview-subsection + .jp-preview-subsection {
    margin-top: 16px;
}

.jp-preview-subsection__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #eef6ff;
    border: 1px solid #dbeafe;
}

.jp-preview-subsection__head .fa {
    color: #1e40af;
    margin-top: 2px;
    font-size: 15px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.jp-preview-subsection__title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.35;
}

.jp-preview-subsection__hint {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #1e40af;
    line-height: 1.45;
}

.jp-preview-subsection .jp-preview-rows {
    padding-top: 0;
}

.jp-preview-row__value-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.jp-preview-location-notice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 500;
    color: #1e40af;
    line-height: 1.4;
}

.jp-preview-location-notice__text {
    color: #1e40af;
}

.jp-preview-row__label--whatsapp,
.jp-preview-row__label--email-alerts {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.jp-preview-row__info-tip {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 4px;
}

.jp-tooltip.jp-tooltip--preview {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    z-index: 30;
    min-width: 220px;
    max-width: 320px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.jp-form-footer--preview {
    margin-top: 20px;
}

@media (max-width: 640px) {
    .jp-preview-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .jp-preview-section__summary {
        padding-left: 16px;
    }
}
