:root {
  --green: #649c89;
  --green-dark: #16423c;
  --green-light: #c4dad2;
  --green-outline: #004b44;
  --yellow: #87ab21;
  --white: #ffffff;
  --black: #060606;
  --gray: #4b4b4b;
  --warning: #febc2f;
  --danger: #ff5f57;
}

/* ================= Global Reset & Base ================= */
html,
body {
  font-family: "Poppins", sans-serif;
  scroll-snap-type: y mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--black);
  background-color: var(--light-gray);
  /* overflow-x: hidden; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

hr {
  color: var(--light-gray);
  opacity: 1;
}

a {
  text-decoration: none !important;
  display: inline-block;
}



/* ================= Helper Classes ================= */
.text-yellow {
  color: var(--yellow) !important;
}
.text-warning {
  color: var(--warning) !important;
}
.text-danger {
  color: var(--danger) !important;
}

.text-light-green {
  color: var(--green-light) !important;
}

.text-green {
  color: var(--green) !important;
}
.text-dark-green {
  color: var(--green-dark) !important;
}
.text-white {
  color: var(--white) !important;
}

.text-gray {
  color: var(--gray) !important;
}
.text-light-gray {
  color: var(--light-gray) !important;
}

.text-black {
  color: var(--black) !important;
}

.prn_bg-green {
  background-color: var(--green) !important;
}
.prn_bg-dark-green {
  background-color: var(--green-dark) !important;
}
.prn_bg-light-green {
  background-color: var(--green-light) !important;
}

.prn_bg-yellow {
  background-color: var(--yellow) !important;
}
.prn_bg-danger {
  background-color: var(--danger) !important;
}
.prn_bg-gray {
  background-color: var(--gray) !important;
}
.prn_bg-light-gray {
  background-color: var(--light-gray) !important;
}

.prn_bg-white {
  background-color: var(--white) !important;
}

.prn_border-light-gray {
  border: 1px solid var(--light-gray) !important;
}
.prn_border-light-green {
  border: 1px solid var(--green-light) !important;
}
.prn_border-green {
  border: 1px solid var(--green) !important;
}
.prn_border-dark-green {
  border: 1px solid var(--green-dark) !important;
}

.prn_border-yellow {
  border: 1px solid var(--yellow) !important;
}

.prn_border-white {
  border: 1px solid var(--white) !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-medium {
  font-weight: 500 !important;
}
.fw-400 {
  font-weight: 400 !important;
}

/* ================= Responsive Font Size Utilities (10px - 40px) ================= */
.fs-10 {
  font-size: clamp(9px, 0.6vw, 10px) !important;
}
.fs-11 {
  font-size: clamp(10px, 0.7vw, 11px) !important;
}
.fs-12 {
  font-size: clamp(11px, 0.8vw, 12px) !important;
}
.fs-13 {
  font-size: clamp(12px, 0.9vw, 13px) !important;
}
.fs-14 {
  font-size: clamp(12.4px, 1vw, 14px) !important;
}
.fs-15 {
  font-size: clamp(14px, 1.1vw, 15px) !important;
}
.fs-16 {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
}
.fs-17 {
  font-size: clamp(15px, 1.25vw, 17px) !important;
}
.fs-18 {
  font-size: clamp(16px, 1.3vw, 18px) !important;
}
.fs-19 {
  font-size: clamp(17px, 1.35vw, 19px) !important;
}
.fs-20 {
  font-size: clamp(18px, 1.4vw, 20px) !important;
}
.fs-21 {
  font-size: clamp(19px, 1.45vw, 21px) !important;
}
.fs-22 {
  font-size: clamp(20px, 1.5vw, 22px) !important;
}
.fs-23 {
  font-size: clamp(21px, 1.55vw, 23px) !important;
}
.fs-24 {
  font-size: clamp(22px, 1.6vw, 24px) !important;
}
.fs-25 {
  font-size: clamp(23px, 1.7vw, 25px) !important;
}
.fs-26 {
  font-size: clamp(24px, 1.8vw, 26px) !important;
}
.fs-27 {
  font-size: clamp(25px, 1.9vw, 27px) !important;
}
.fs-28 {
  font-size: clamp(26px, 2vw, 28px) !important;
}
.fs-29 {
  font-size: clamp(27px, 2.1vw, 29px) !important;
}
.fs-30 {
  font-size: clamp(28px, 2.2vw, 30px) !important;
}
.fs-31 {
  font-size: clamp(22px, 2.3vw, 31px) !important;
}
.fs-32 {
  font-size: clamp(23px, 2.4vw, 32px) !important;
}
.fs-33 {
  font-size: clamp(24px, 2.5vw, 33px) !important;
}
.fs-34 {
  font-size: clamp(25px, 2.6vw, 34px) !important;
}
.fs-35 {
  font-size: clamp(26px, 2.7vw, 35px) !important;
}
.fs-36 {
  font-size: clamp(27px, 2.8vw, 36px) !important;
}
.fs-37 {
  font-size: clamp(28px, 2.9vw, 37px) !important;
}
.fs-38 {
  font-size: clamp(29px, 3vw, 38px) !important;
}
.fs-39 {
  font-size: clamp(30px, 3.1vw, 39px) !important;
}
.fs-40 {
  font-size: clamp(30px, 3.2vw, 40px) !important;
}

/* ================= Headings ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

/* Responsive sizes */
h1 {
  font-size: clamp(28px, 5vw, 40px);
} /* ~40px max */
h2 {
  font-size: clamp(24px, 4vw, 32px);
} /* ~32px max */
h3 {
  font-size: clamp(20px, 3.5vw, 28px);
} /* ~28px max */
h4 {
  font-size: clamp(18px, 3vw, 24px);
} /* ~24px max */
h5 {
  font-size: clamp(16px, 2.5vw, 20px);
} /* ~20px max */
h6 {
  font-size: clamp(14px, 2vw, 16px);
} /* ~16px max */

.prn_underline {
  text-decoration: underline !important;
}

/* Content overflow handling */
.prn_step-content {
  min-width: 100%;
  padding-right: 10px;
}

/* Global Modal Styles */
.modal-content {
  border: none;
  border-radius: 16px;
  padding: 0.6rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  border: 0;
  padding: 1.5rem;
  padding-bottom: 0;
  h5 {
    font-weight: 600;
    font-size: 1.92rem;
  }
}
/* Ensure modal-body scrolls if content is long */
.modal-body {
  overflow-y: auto;
  flex: 1;
  padding: 1.5rem;
  padding-top: 1rem;
}

/* Custom Scrollbar for all modals */
.modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #12352f;
}

/* Firefox */
.modal-content,
.modal-body {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) #f8f9fa;
}

.modal-footer {
  border: 0;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  .prn_cancel-button,
  .prn_accept-button {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: clamp(12.4px, 1vw, 14px) !important;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
}
/* Header */
.modal-title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.btn-close {
  font-size: 1.2rem;
}

/* Steps wrapper adjustments for fixed modal */
.prn_steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
  overflow: visible;
  padding: 20px 10px;
  position: relative;
  z-index: 10;
}

/* Parent container for steps wrapper - add padding to accommodate pulse animation */
.mx-auto.px-lg-5:has(.prn_steps-wrapper) {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Job Modal Specific Styles */
#jobModal .modal-dialog {
  max-height: 95vh;
  margin: 2.5vh auto;
}

#jobModal .modal-content {
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#jobModal .modal-header {
  flex-shrink: 0;
  border-bottom: 1px solid #e9ecef;
}

#jobModal .modal-body {
  flex: 1;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: calc(95vh - 140px);
  padding: 1.5rem;
}

#jobModal .modal-footer {
  flex-shrink: 0;
  border-top: 1px solid #e9ecef;
}

/* Custom scrollbar for job modal */
#jobModal .modal-body::-webkit-scrollbar {
  width: 10px;
}

#jobModal .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#jobModal .modal-body::-webkit-scrollbar-thumb {
  background: #16423C;
  border-radius: 10px;
}

#jobModal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #0d2e29;
}

/* Firefox */
#jobModal .modal-body {
  scrollbar-width: thin;
  scrollbar-color: #16423C #f1f1f1;
}

/* Responsive adjustments for job modal */
@media (max-width: 991.98px) {
  #jobModal .modal-dialog {
    max-height: 98vh;
    margin: 1vh auto;
  }
  
  #jobModal .modal-content {
    max-height: 98vh;
  }
  
  #jobModal .modal-body {
    max-height: calc(98vh - 120px);
    padding: 1rem;
  }
}

@media (max-width: 767.98px) {
  .prn_steps-wrapper {
    margin: 15px 0;
    gap: 4px;
  }
  
  #jobModal .modal-body {
    max-height: calc(98vh - 100px);
    padding: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  #jobModal .modal-body {
    padding: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .prn_steps-wrapper {
    margin: 10px 0;
    gap: 2px;
  }
}

.prn_step {
  width: 24px;
  height: 24px;
  border: 3px solid #e6ece9;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .prn_step {
    width: 24px;
    height: 24px;
    border-width: 2px;
    font-size: clamp(11px, 0.8vw, 12px) !important;
  }
}

@media (max-width: 575.98px) {
  .prn_step {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* Default step */
.prn_step::before {
  content: "";
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 50%;
}

@media (max-width: 767.98px) {
  .prn_step::before {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 575.98px) {
  .prn_step::before {
    width: 6px;
    height: 6px;
  }
}

/* Current step */
.prn_step.prn_active {
  border-color: #dde8e3;
  background: #dde8e3;
  animation: pulse 2s ease-in-out infinite;
}

.prn_step.prn_active::before {
  background: #5e8f7d;
  animation: pulse-inner 2s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(94, 143, 125, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(94, 143, 125, 0);
  }
}

@keyframes pulse-inner {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Completed step with checkmark */
.prn_step.prn_completed {
  border-color: var(--yellow);
  background: var(--yellow);
  color: white;
}

.prn_step.prn_completed::before {
  display: none;
}

.prn_step.prn_completed::after {
  content: "✓";
  color: white;
  font-size: inherit;
  font-weight: bold;
}

.prn_line {
  flex: 1;
  height: 2px;
  background: #e6ece9;
  min-width: 10px;
  transition: background 0.3s ease;
}

.prn_line.prn_completed {
  background: var(--yellow);
}

@media (max-width: 575.98px) {
  .prn_line {
    min-width: 5px;
  }
}

/* Instruction text */
.prn_instruction {
  font-size: clamp(18px, 1.4vw, 20px) !important;
  font-weight: 500;
  color: var(--black);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Step content wrapper */
.prn_step-content {
  display: none;
}

.prn_step-content.prn_active {
  display: block;
}

/* STEP 1: Category Selection Styles */
.prn_category-tabs-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;

  .prn_badge {
    background-color: var(--white);
    color: var(--yellow);
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 32px;
    font-size: clamp(11px, 0.8vw, 12px) !important;
    border: 1px solid #e9efec;
  }
}

@media (max-width: 767.98px) {
  .prn_category-tabs-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.prn_category-btn {
  border-radius: 18px;
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  padding: 16px 20px;
  margin: 0 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  flex: 1;
}

.prn_category-btn.prn_active {
  background: var(--green-dark);
  color: var(--white);
  border: none;
}

.prn_category-btn.prn_inactive {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--light-gray);
}

.prn_card-box {
  border: 1.25px solid #e9efec;
  border-radius: 12px;
  padding: 15px;
  background: var(--white);
  height: 100%;
  margin-bottom: 20px;
}

/* Scrollable containers for category selection */
.prn_categories-list,
#subCategoriesList,
#jobTypesList,
#selectedCategoriesList {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
}

/* Custom Scrollbar Styling */
.prn_categories-list::-webkit-scrollbar,
#subCategoriesList::-webkit-scrollbar,
#jobTypesList::-webkit-scrollbar,
#selectedCategoriesList::-webkit-scrollbar {
  width: 8px;
}

.prn_categories-list::-webkit-scrollbar-track,
#subCategoriesList::-webkit-scrollbar-track,
#jobTypesList::-webkit-scrollbar-track,
#selectedCategoriesList::-webkit-scrollbar-track {
  background: #dde8e3;
  border-radius: 10px;
}

.prn_categories-list::-webkit-scrollbar-thumb,
#subCategoriesList::-webkit-scrollbar-thumb,
#jobTypesList::-webkit-scrollbar-thumb,
#selectedCategoriesList::-webkit-scrollbar-thumb {
  background: #16423C;
  border-radius: 10px;
}

.prn_categories-list::-webkit-scrollbar-thumb:hover,
#subCategoriesList::-webkit-scrollbar-thumb:hover,
#jobTypesList::-webkit-scrollbar-thumb:hover,
#selectedCategoriesList::-webkit-scrollbar-thumb:hover {
  background: #0d2e29;
}

/* Firefox Scrollbar */
.prn_categories-list,
#subCategoriesList,
#jobTypesList,
#selectedCategoriesList {
  scrollbar-width: thin;
  scrollbar-color: #16423C #dde8e3;
}

.prn_categories-list li {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  list-style: none;
  padding: 8px 12px;
  margin-bottom: 8px;
  cursor: pointer;
  font-weight: 400;
  color: var(--green-dark);
}

.prn_categories-list li.prn_active {
  background: var(--yellow);
  color: var(--white);
  font-weight: 600;
}

.prn_sub-cat {
  background: var(--light-gray);
  font-size: clamp(12.4px, 1vw, 14px) !important;
  color: var(--green-dark);
  font-weight: 400;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}

.prn_selected-cat {
  background: var(--green-dark);
  color: var(--white);
  font-size: clamp(12.4px, 1vw, 14px) !important;
  padding: 12px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.prn_selected-cat button {
  background: none;
  border: none;
  color: var(--white);
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  cursor: pointer;
}

/* STEP 2: Budget Method Styles */
.prn_budget-options {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 991.98px) {
  .prn_budget-options {
    flex-direction: column;
    gap: 15px;
  }
}

.prn_budget-option {
  flex: 1;
  border: 1px solid #e9efec;
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.prn_budget-option:hover {
  border-color: #dde8e3;
}

.prn_budget-option.prn_selected {
  background: #e9efec;
}

.prn_budget-option-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.prn_budget-radio {
  width: 20px;
  height: 20px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prn_budget-option.prn_selected .prn_budget-radio {
  border-color: var(--yellow);
}

.prn_budget-option.prn_selected .prn_budget-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

.prn_budget-option-title {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  font-weight: 400;
  color: var(--black);
}
.prn_budget-fields {
  margin-top: 2rem;
}
.prn_budget-field-label {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.prn_budget-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.25px solid #e9efec;
  border-radius: 18px;
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  color: var(--gray);
  background: var(--white);
}

.prn_budget-input:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
}

.prn_hourly-fields {
  display: flex;
  gap: 15px;
}

.prn_hourly-fields .prn_budget-field {
  flex: 1;
}

@media (max-width: 575.98px) {
  .prn_hourly-fields {
    flex-direction: column;
    gap: 12px;
  }
}

.prn_negotiable-text {
  color: #6b7280;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  line-height: 1.5;
  margin-top: 2rem;
}

/* STEP 3: Freelancer Preferences Styles */
.prn_preferences-section {
  margin-bottom: 30px;
  border: 1px solid #e9efec;
  padding: 1rem;
  border-radius: 1rem;
}

.prn_preferences-title {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.prn_gender-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prn_gender-option {
  display: flex;
  align-items: center;
  padding: 2rem;
  border: 1px solid #e9efec;
  border-radius: 18px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prn_gender-option.prn_selected {
  background: #e9efec;
}

.prn_gender-radio {
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prn_gender-option.prn_selected .prn_gender-radio {
  border-color: #87ab21;
}

.prn_gender-option.prn_selected .prn_gender-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #87ab21;
  border-radius: 50%;
}

.prn_gender-label {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  font-weight: 500;
  color: #1f2937;
}

.prn_selected-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid #e9efec;
  border-radius: 12px;
  padding: 0.8rem;
}

.prn_language-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #16423c;
  color: white;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  gap: 6px;
  white-space: nowrap;
  width: max-content;
}

.prn_language-tag .prn_remove-lang {
  background: none;
  border: none;
  color: white;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  white-space: nowrap;
}

.prn_language-input {
  flex: 1;
  padding: 2px 16px;
  border: none;
  outline: none;
  border-radius: 8px;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  color: #6b7280;
  background: #ffffff;
}

.prn_language-input:focus {
  outline: none;
  border-color: #87ab21;
}

.prn_available-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.prn_language-option {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #e9efec;
  color: var(--green-dark);
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prn_language-option:hover {
  background: #e5e7eb;
}

.prn_language-option::before {
  content: "+";
  margin-right: 4px;
  font-weight: bold;
}

.prn_language-option.prn_disabled {
  background: #f5f5f5;
  color: #9ca3af;
  /* greyed text */
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  /* prevent re-click */
}
.prn_not-important {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: 1px solid #e9efec;
  color: var(--green-dark);
  font-size: clamp(12.4px, 1vw, 14px) !important;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px;
}

.prn_not-important input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #d1d5db;
  border-radius: 3px;
}

/* STEP 4: Project Timeline Styles */
.prn_timeline-options {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 991.98px) {
  .prn_timeline-options {
    flex-direction: column;
    gap: 15px;
  }
}

.prn_timeline-option {
  flex: 1;
  border: 1px solid #e9efec;
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.prn_timeline-option:hover {
  border-color: #dde8e3;
}

.prn_timeline-option.prn_selected {
  background: #e9efec;
}

.prn_timeline-option-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.prn_timeline-radio {
  width: 20px;
  height: 20px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.prn_timeline-option.prn_selected .prn_timeline-radio {
  border-color: var(--yellow);
}

.prn_timeline-option.prn_selected .prn_timeline-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

.prn_timeline-option-title {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  font-weight: 400;
  color: var(--black);
}

.prn_timeline-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 2rem;
}

.prn_timeline-field-label {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.prn_date-input-wrapper {
  position: relative;
}

.prn_date-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.25px solid #e9efec;
  border-radius: 18px;
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  color: var(--gray);
  background: var(--white);
}

.prn_date-input:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
}

.prn_date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.prn_start-end-fields {
  display: flex;
  gap: 15px;
}

.prn_start-end-fields .prn_timeline-field {
  flex: 1;
}

@media (max-width: 575.98px) {
  .prn_start-end-fields {
    flex-direction: column;
    gap: 12px;
  }
}

.prn_flexible-text {
  color: #6b7280;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  line-height: 1.5;
  margin-top: 2rem;
}

/* STEP 5: File Upload / Attachments */
#step5 .prn_instruction {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
}

/* Option buttons */
.prn_step5-options .prn_option-btn {
  width: 100%;
  padding: 18px 20px;
  border: 1px dashed var(--green-dark);
  border-radius: 12px;
  background: #fff;
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  font-weight: 400;
  color: var(--green-dark);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Upload */
.prn_option-btn.prn_upload .prn_icon {
  color: #174a37;
}

/* Record Voice */
.prn_option-btn.prn_voice {
  border-color: var(--yellow);
  color: var(--yellow);
}
.prn_option-btn.prn_voice .prn_icon {
  color: var(--yellow);
}

/* Record Video */
.prn_option-btn.prn_video {
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.prn_option-btn.prn_video .prn_icon {
  color: var(--green-dark);
}

/* No Option */
.prn_option-btn.prn_no-option {
  border: 1px solid var(--green-dark);
  color: var(--black);
  font-weight: 400;
  display: flex;
  justify-content: flex-start;

  font-size: clamp(13.5px, 1.2vw, 16px) !important;
}

.prn_option-btn.prn_no-option {
  height: 100%;
}
.prn_option-btn.prn_no-option .prn_timeline-radio {
  border-color: var(--yellow);
}
.prn_option-btn.prn_no-option span {
  color: var(--black);
}

/* Recorder section */
.prn_recorder-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e6ece9;
  border-radius: 18px;
  padding: 1rem 6rem;
  background: #fff;
}

.prn_rec-label {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  font-weight: 400;
  color: var(--green-dark);
  white-space: nowrap;
}

.prn_progress-bar {
  flex: 1;
  height: 6px;
  background: #f1f5f3;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.prn_progress {
  width: 30%;
  height: 100%;
  background: var(--green-dark);
  border-radius: 6px;
}

.prn_time {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 500;
  color: var(--green-dark);
}

.prn_record-action {
  background: var(--green-dark);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Attachments */
.prn_attachments {
  margin-top: 20px;
  p {
    color: var(--gray);
    font-weight: 400;
    font-size: clamp(13.5px, 1.2vw, 16px) !important;
  }
}

.prn_attachment-item {
  background: var(--green-dark);
  padding: 10px 14px;
  font-weight: 600;
  border-radius: 18px;
  font-size: clamp(11px, 1vw, 12px) !important;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}

.prn_attachment-icon {
  font-size: 16px;
}

.prn_attachment-name {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prn_attachment-size {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.prn_remove-attachment {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.prn_remove-attachment:hover {
  background: var(--danger);
  transform: scale(1.1);
}

/* STEP 6: Important Factors Styles */
#step6 .prn_instruction {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 8px;
}

.prn_sub-instruction {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 400;
  color: #6b7280;
  text-align: center;
  margin-bottom: 30px;
}
.prn_importance-tags-container {
  border: 1px solid #e9efec;
  padding: 1rem;
  border-radius: 12px;
}
.prn_selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid #e9efec;
  border-radius: 12px;
  padding: 0.8rem;
}
.prn_importance-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #e9efec;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 6px;
  white-space: nowrap;
}

.prn_importance-tag:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.prn_importance-tag.prn_disabled {
  background: #f5f5f5;
  color: #9ca3af;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.prn_importance-tag.prn_disabled:hover {
  background: #f5f5f5;
  border-color: #e5e7eb;
}

.prn_importance-tag.prn_selected {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.prn_importance-tag .prn_tag-plus {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  font-weight: 600;
  color: #9ca3af;
  margin-right: 4px;
}

.prn_importance-tag.prn_selected .prn_tag-plus {
  display: none;
}

.prn_importance-tag .prn_tag-close {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-right: 4px;
  line-height: 1;
}

/* Not specific button styling */
.prn_importance-tag.prn_not-specific {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  position: relative;
  padding-left: 38px;
}

.prn_importance-tag.prn_not-specific:hover {
  background: #f9fafb;
}

.prn_importance-tag.prn_not-specific.prn_selected {
  background: #f0f9ff;
  border-color: var(--yellow);
  color: #374151;
}

.prn_importance-tag.prn_not-specific .prn_radio-circle {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prn_importance-tag.prn_not-specific.prn_selected .prn_radio-circle {
  border-color: var(--yellow);
}

.prn_importance-tag.prn_not-specific.prn_selected .prn_radio-circle::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

/* Tag input wrapper */
.prn_tag-input-wrapper {
  width: 100%;
  max-width: 600px;
}

.prn_tag-input {
  flex: 1;
  padding: 2px 16px;
  border: none;
  outline: none;
  border-radius: 8px;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  color: #6b7280;
  background: #ffffff;
}

.prn_tag-input::placeholder {
  color: #9ca3af;
  font-size: 13px;
}

.prn_tag-input:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 575.98px) {
  .prn_importance-tag {
    font-size: 13px;
    padding: 8px 16px;
  }

  .prn_tag-input {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* STEP 7: Describe Project Styles */
#step7 .prn_instruction {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin-bottom: 2rem;
}

/* Form section wrappers */
.prn_job-form-section {
  margin-bottom: 24px;
}

.prn_job-form-label {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Job Title input */
.prn_job-input {
  width: 100%;
  padding: 16px;
  border: 1.25px solid #e9efec;
  font-weight: 400;
  border-radius: 18px;
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  color: var(--green-dark);
  background: #fff;
  transition: all 0.3s ease;
}
.prn_job-input:focus {
  outline: none;
}

/* Job Description textarea */
.prn_job-textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px;
  border: 1.25px solid #e9efec;
  border-radius: 12px;
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  color: var(--green-dark);
  background: #fff;
  resize: vertical;
  line-height: 1.6;
  transition: all 0.3s ease;
}
.prn_job-textarea:focus {
  outline: none;
  box-shadow: none;
}

/* Skills Set Section */
.prn_skills-wrapper {
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.prn_selected-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.prn_skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #16423c;
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
}

.prn_skill-tag button {
  background: none;
  border: none;
  color: white;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  cursor: pointer;
}

.prn_skill-input {
  border: none;
  outline: none;
  flex: 1;
  min-width: 120px;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  padding: 6px 0;
  color: #111;
}

.prn_available-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.prn_suggestion-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.prn_suggestion-tag:hover {
  background: #e5e7eb;
}

/* STEP 8: Review & Submit Styles - Exact match to provided design */
#step8 .prn_instruction {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  text-align: center;
  margin-bottom: 30px;
}

.prn_review-section-container {
  max-height: none;
  overflow: visible;
}

.prn_review-card-modern {
  background: #e9efec;
  padding: 12px 16px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.prn_review-header-modern {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px 12px 0 0;
  gap: 10px;
  border-bottom: none;
}

.prn_review-icon-modern {
  font-size: 18px;
  color: #6c757d;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prn_review-title-modern {
  font-size: clamp(12.4px, 1.2vw, 14px) !important;
  font-weight: 600;
  color: var(--black);
  flex: 1;
}

.prn_edit-btn-modern {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  cursor: pointer;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prn_edit-btn-modern:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.prn_edit-btn-modern:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.prn_edit-btn-modern img {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.prn_edit-btn-modern:hover img {
  transform: rotate(15deg);
}

.prn_review-content-modern {
  padding: 20px;
  border-radius: 0 0 12px 12px;
}

.prn_review-item-modern {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 20px;
}

.prn_review-item-modern:last-child {
  margin-bottom: 0;
}

.prn_review-label-modern {
  font-size: clamp(11px, 0.8vw, 12px) !important;
  font-weight: 600;
  color: var(--black);
  min-width: 120px;
  flex-shrink: 0;
}

.prn_review-value-modern {
  font-size: clamp(11px, 0.8vw, 12px) !important;
  color: var(--gray);
  font-weight: 400;
  flex: 1;
  text-align: left;
}

/* Special styling for skills tags */
.prn_review-value-modern .prn_skill-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prn_review-value-modern .prn_skill-tag {
  color: var(--gray);
  font-size: clamp(11px, 0.8vw, 12px) !important;
  white-space: nowrap;
}

/* STEP 9: Choose Posting Plan Styles */
#step9 .prn_instruction {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin-bottom: 30px;
}

.prn_pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .prn_pricing-plans {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.prn_plan-card {
  border: 1px solid #e9efec;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.prn_plan-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Disabled plan card */
.prn_plan-card.prn_plan-disabled {
  opacity: 0.5;
  position: relative;
  pointer-events: none;
  cursor: not-allowed;
}

.prn_plan-btn-disabled {
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  pointer-events: none !important;
}

.prn_plan-card.prn_popular {
  border-color: var(--yellow);
  position: relative;
}

.prn_plan-card.prn_popular::before {
  content: "Popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: clamp(11px, 0.8vw, 12px) !important;
  font-weight: 600;
}

.prn_plan-header {
  margin-bottom: 20px;
}

.prn_plan-name {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;

  .prn_plan-badge {
    color: var(--yellow);
    border: 1px solid var(--yellow);
    font-size: clamp(10px, 0.7vw, 11px) !important;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 32px;
    margin-left: 6px;
    vertical-align: middle;
  }
}

.prn_plan-price {
  font-size: clamp(22px, 2.3vw, 31px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.prn_plan-price .prn_currency {
  font-size: clamp(22px, 2.3vw, 31px) !important;
  font-weight: 600;
  color: var(--black);
}

.prn_plan-price .prn_period {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  color: var(--black);
  font-weight: 400;
}

.prn_plan-features {
  margin-bottom: 24px;
  text-align: left;
}

.prn_plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  color: #374151;
  line-height: 1.4;
}

.prn_plan-feature.prn_included {
  color: #374151;
}

.prn_plan-feature.prn_excluded {
  color: #9ca3af;
}

.prn_plan-feature-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.prn_plan-feature.prn_included .prn_plan-feature-icon {
  color: var(--yellow);
}

.prn_plan-feature.prn_excluded .prn_plan-feature-icon {
  color: #dc2626;
}

.prn_select-plan-btn {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prn_select-plan-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.prn_plan-card.prn_popular .prn_select-plan-btn {
  background: var(--yellow);
  color: white;
  border-color: var(--yellow);
}

.prn_plan-card.prn_popular .prn_select-plan-btn:hover {
  background: #759219;
  border-color: #759219;
}

.prn_back-to-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  background: #e9efec;
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--black);
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* STEP 10: Completion Styles - Exact match to provided design */
#step10 {
  text-align: center;
}

.prn_completion-header {
  margin-bottom: 40px;
}

.prn_completion-title {
  font-size: clamp(22px, 2.3vw, 31px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.prn_completion-checkmark {
  width: 70px;
  height: 70px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: white;
}

.prn_success-message {
  font-size: clamp(18px, 1.4vw, 20px) !important;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}

.prn_success-subtitle {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 0;
}

.prn_action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.prn_action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #f8f9fa;
  color: var(--green-dark);
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  text-align: left;
}

.prn_action-btn:hover {
  background: #e9ecef;
  text-decoration: none;
}

.prn_view-job-btn {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.prn_view-job-btn:hover {
  background: #0f2e29;
  color: white;
}

.prn_new-job-btn {
  background: var(--yellow);
  color: white;
  border-color: var(--yellow);
}

.prn_new-job-btn:hover {
  background: #759219;
  color: white;
}

.prn_job-info-summary {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  text-align: left;
}

.prn_job-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #e9ecef;
}

.prn_job-info-header span {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  color: var(--black);
}

.prn_job-info-content {
  padding: 20px;
}

.prn_job-info-row {
  display: flex;
  gap: 40px;
}

.prn_job-info-left,
.prn_job-info-right {
  flex: 1;
}

.prn_job-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.prn_job-info-item:last-child {
  margin-bottom: 0;
}

.prn_job-info-label {
  font-size: clamp(11px, 0.8vw, 12px) !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.prn_job-info-value {
  font-size: clamp(11px, 0.8vw, 12px) !important;
  color: var(--gray);
  font-weight: 400;
}

.prn_next-steps-section {
  background: #87ab211a;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.prn_next-steps-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.prn_next-steps-header i {
  font-size: clamp(13.5px, 1.2vw, 16px) !important;
  color: var(--yellow);
}

.prn_next-steps-header span {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  font-weight: 600;
  color: var(--yellow);
}

.prn_next-steps-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
}

@media (max-width: 1000px) {
  .prn_next-steps-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.prn_next-steps-list li {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  color: var(--yellow);
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}

.prn_next-steps-list li:before {
  content: "•";
  color: var(--yellow);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.prn_next-steps-list li:last-child {
  margin-bottom: 0;
}

/* Mobile responsive for Step 10 */
@media (max-width: 991.98px) {
  .prn_job-info-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .prn_completion-title {
    font-size: 28px;
  }

  .prn_completion-checkmark {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .prn_success-message {
    font-size: 18px;
  }

  .prn_action-btn {
    padding: 14px 16px;
    font-size: 13px;
  }

  .prn_job-info-content {
    padding: 16px;
  }

  .prn_next-steps-section {
    padding: 16px;
  }
}

@media (max-width: 575.98px) {
  .prn_completion-title {
    font-size: 24px;
  }

  .prn_completion-checkmark {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .prn_success-message {
    font-size: clamp(13.5px, 1.2vw, 16px) !important;
  }

  .prn_success-subtitle {
    font-size: 13px;
  }

  .prn_action-btn {
    padding: 12px 14px;
    font-size: clamp(11px, 0.8vw, 12px) !important;
  }

  .prn_job-info-header {
    padding: 12px 14px;
  }

  .prn_job-info-content {
    padding: 14px;
  }
}

/* Footer buttons */
.modal-footer {
  border: none;
  justify-content: end;
  flex-shrink: 0;
}

.btn-prev {
    font-size: clamp(12.4px, 1vw, 14px) !important;
    padding: 12px 16px;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    gap: 0.6rem;
    border-radius: 18px;
    white-space: nowrap;
  }

.btn-next {
  font-size: clamp(12.4px, 1vw, 14px) !important;
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 30px;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  gap: 0.6rem;
  border-radius: 18px;
  white-space: nowrap;
}
.btn-next {
  background: var(--green-dark);
  color: var(--white);
}
.btn-prev {
  background: #e9efec;
  color: var(--black);

  &:disabled {
    color: #c4dad2;
  }
}


/* Hide scrollbar */
.prn_steps-wrapper::-webkit-scrollbar {
  display: none;
}

.prn_steps-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* ensure button text and SVG inherit white */
.btn-next,
#nextBtn {
  color: var(--white, #ffffff) !important;
  /* fallback to #fff if var not defined */
}

/* force the SVG path fill to white (highest priority) */
.btn-next svg path,
#nextBtn svg path {
  fill: #ffffff !important;
}