 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Montserrat", sans-serif;
 }

 html,
 body {
     height: 100%;
     margin: 0;
 }



 body {
     background: linear-gradient(180deg, #E3F3FB 0%, #ffffff 30%);
     color: #03304c;
     padding: 28px 16px;
     display: flex;
     justify-content: center;
 }

 .f-job-container {
     width: 100%;
     max-width: 1120px;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 /* Header */
 .f-job-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 16px
 }

 .f-job-breadcrumb {
     color: #6d7d88;
     font-weight: 600;
     font-size: 14px
 }

 .f-job-title {
     font-size: 20px;
     font-weight: 700;
     color: #032a47;
     margin-top: 6px
 }

 .f-job-header strong {
     color: #032a47
 }

 /* Card */
 .f-job-card {
     background: #fff;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(2, 33, 72, 0.06);
     display: flex;
     gap: 24px;
     align-items: flex-start;
     padding: 26px;
 }

 .f-job-breadcrumb span {
     color: #0cb24a;
     background: #e8fff3;
     padding: 4px 8px;
     border-radius: 20px;
     font-size: 12px;
     margin-left: 10px;
     font-weight: 700
 }

 /* Vertical Progress */
.f-job-progress-vertical {
    display: flex;
    flex-direction: column;
    width: 250px;
    position: relative;
    margin-right: 40px;
}

.f-job-step-wrapper {
    position: relative;
}

.f-job-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    cursor: pointer;
}

.f-job-step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e6f0fa;
    color: #0056D2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 12px;
    transition: all 0.3s;
}

.f-job-step.active .f-job-step-indicator {
    background: #0056D2;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 86, 210, 0.3);
    transform: scale(1.2);
}

.f-job-step-info {
    flex: 1;
}

.f-job-step-title {
    font-weight: 600;
    color: #03304c;
    margin-bottom: 4px;
}

.f-job-step-desc {
    font-size: 13px;
    color: #6d7d88;
}

.f-job-line {
    width: 4px;
    height: 24px;
    background: #e6f0fa;
    margin-left: 16px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.f-job-step.active + .f-job-line {
    background: #0056D2;
}


 /* Side & Main */
 .f-job-side {
     display: none;
 }

 /* not needed with vertical progress */
 .f-job-main {
     flex: 1;
 }

 .f-job-form {
     display: block
 }

 .f-job-row {
     display: flex;
     gap: 14px;
     margin-bottom: 14px;
     flex-wrap: wrap
 }

 .f-job-col {
     flex: 1;
     min-width: 220px
 }

 label.f-job-label {
     display: block;
     font-size: 13px;
     margin-bottom: 8px;
     color: #365f73;
     font-weight: 600
 }

 input.f-job-input,
 select.f-job-input,
 textarea.f-job-input {
     width: 100%;
     padding: 12px;
     border: 1px solid #e6eef3;
     border-radius: 8px;
     background: #fbfeff;
     font-size: 14px;
     color: #032a47;
     box-sizing: border-box
 }

 textarea.f-job-input {
     min-height: 120px;
     resize: vertical
 }

 .f-job-hint {
     font-size: 13px;
     color: #6d7d88;
     margin-top: 6px
 }

 /* Chips & tags */
 .f-job-chips {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 8px
 }

 .f-job-chip {
     background: #f6fbff;
     border: 1px solid rgba(0, 86, 210, 0.06);
     padding: 8px 12px;
     border-radius: 999px;
     font-size: 13px;
     color: #01678d;
     cursor: pointer
 }

 .f-job-chip.active {
     background: #0056D2;
     color: #fff;
     border-color: transparent;
     box-shadow: 0 8px 20px rgba(0, 86, 210, 0.12)
 }

 .f-job-tag-input {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     border: 1px dashed #dbeef7;
     padding: 8px;
     border-radius: 8px
 }

 .f-job-tag {
     background: #eaf7ff;
     color: #01678d;
     padding: 6px 10px;
     border-radius: 8px;
     font-size: 13px;
     display: inline-flex;
     align-items: center;
     gap: 8px
 }

 .f-job-tag button {
     background: transparent;
     border: none;
     color: #01678d;
     cursor: pointer;
     font-weight: 700
 }

 /* checkboxes group */
 .f-job-checks {
     display: flex;
     gap: 12px;
     flex-wrap: wrap
 }

 .f-job-check {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #fbfeff;
     padding: 8px 10px;
     border-radius: 8px;
     border: 1px solid #e7f1f6;
     font-size: 14px;
     color: #063845;
     cursor: pointer
 }

 /* actions */
 .f-job-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 12px;
     margin-top: 18px;
     padding-top: 14px;
     border-top: 1px dashed #edf6fb
 }

 .f-job-leftnote {
     color: #6d7d88;
     font-size: 13px
 }

 .f-job-btn {
     background: #fff;
     border: 1px solid #e0eef6;
     color: #03415b;
     padding: 10px 18px;
     border-radius: 10px;
     font-weight: 700;
     cursor: pointer;
     box-shadow: 0 6px 18px rgba(3, 37, 65, 0.04)
 }

 .f-job-btn.f-job-primary {
     background: #0056D2;
     color: #fff;
     border: none;
     padding: 12px 20px;
     border-radius: 10px;
     box-shadow: 0 12px 26px rgba(0, 86, 210, 0.18)
 }

 .f-job-btn:active {
     transform: translateY(1px)
 }

 /* summary */
 .f-job-summary {
     margin-top: 16px;
     padding: 14px;
     border-radius: 10px;
     background: #f7fcff;
     border: 1px solid #dff3fb;
     color: #03415b
 }

 .f-job-small {
     font-size: 13px;
     color: #6d7d88
 }

 .f-job-required {
     color: tomato;
     margin-left: 6px;
     font-weight: 700;
     font-size: 12px
 }

 /* responsive */
 @media (max-width:980px) {
     .f-job-card {
         flex-direction: column
     }
 }