/* ============================================================
   SAMSSTC — Jobseeker layout
   All scoped to .jsk-body — zero conflict with global styles
   ============================================================ */

.jsk-body {
    display: flex;
    min-height: 100vh;
    background: #f0f2f8;
}

/* ── Sidebar ── */
.jsk-sidebar {
    width: 228px;
    min-width: 228px;
    flex-shrink: 0;
    background: #1A2B5F;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    scrollbar-width: none;
}

.jsk-sidebar::-webkit-scrollbar {
    display: none;
}

/*Jobseeker menu bar*/
.sams-profile-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.sams-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.sams-profile-badge-green {
    background: rgba(24,168,124,0.2);
    color: #4ECBA6;
    border: 1px solid rgba(24,168,124,0.3);
}

.sams-profile-badge-orange {
    background: rgba(232,112,42,0.2);
    color: #F0934A;
    border: 1px solid rgba(232,112,42,0.3);
}

.sams-profile-badge-amber {
    background: rgba(217,119,6,0.2);
    color: #D97706;
    border: 1px solid rgba(217,119,6,0.3);
}

.sams-profile-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sams-dot-green {
    background: #4ECBA6;
}

.sams-dot-orange {
    background: #F0934A;
}

.sams-dot-amber {
    background: #D97706;
}

.sams-prog {
    margin-top: 0;
}

.sams-prog-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.sams-prog-lbl {
    font-size: 10.5px;
    color: rgba(255,255,255,0.45);
}

.sams-prog-pct {
    font-size: 10.5px;
    font-weight: 700;
    color: #E8702A;
}

.sams-prog-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.sams-prog-fill {
    height: 100%;
    background: #E8702A;
    border-radius: 2px;
    transition: width 0.3s;
}

.sams-item-count {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    background: #FDF0E8;
    color: #E8702A;
}


/* Animated dots for sending state */
.ve-dots span {
    display: inline-block;
    animation: ve-bounce 1.2s infinite;
    font-weight: 700;
}

.ve-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.ve-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes ve-bounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 1;
    }

    30% {
        transform: translateY(-4px);
        opacity: 0.4;
    }
}

/* ── Content ── */
.jsk-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* ── User block ── */
.jsb-user {
    padding: 10px 14px 10px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.jsb-av-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.jsb-ring-svg {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 52px;
    height: 52px;
    pointer-events: none;
}

.jsb-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.jsb-avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #E8702A;
    font-family: 'Poppins', sans-serif;
}

.jsb-user-info {
    flex: 1;
    min-width: 0;
}

.jsb-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jsb-verified {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.jsb-role {
    font-size: 10px;
    color: rgba(255,255,255,0.30);
    margin-bottom: 2px;
}

.jsb-completion {
    font-size: 10px;
    color: #E8702A;
    font-weight: 500;
}

/* ── Meta ── */
.jsb-meta {
    padding: 5px 14px 5px;
}

.jsb-meta-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.jsb-meta-row:last-child {
    margin-bottom: 0;
}

.jsb-meta-row svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0.5;
}

.jsb-unverified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(232,112,42,0.15);
    color: #FFB380;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 10px;
    margin-top: 5px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.15s;
}

.jsb-unverified:hover {
    background: rgba(232,112,42,0.26);
}

.jsb-unverified svg {
    width: 11px;
    height: 11px;
    opacity: 1;
}

/* ── Divider + Nav ── */
.jsb-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 5px 12px;
}

.jsb-nav {
    padding: 6px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jsb-nav-label {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.22);
    padding: 6px 8px 3px;
}

.jsb-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 7px;
    color: rgba(255,255,255,0.50);
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

    .jsb-nav-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .jsb-nav-item:hover {
        background: rgba(255,255,255,0.07);
        color: rgba(255,255,255,0.90);
        text-decoration: none;
    }

    .jsb-nav-item.active {
        background: #E8702A;
        color: #fff;
        font-weight: 600;
    }

        .jsb-nav-item.active:hover {
            background: #d4621f;
        }

.jsb-nav-signout {
    color: rgba(255,255,255,0.28);
    margin-top: auto;
}

    .jsb-nav-signout:hover {
        background: rgba(220,50,50,0.10);
        color: #ff8080;
    }

/* ============================================================
   MOBILE (≤ 768px) — sidebar hides, bottom nav appears
   ============================================================ */
@media (max-width: 768px) {

    .jsk-body {
        padding-bottom: 60px;
    }

    .jsk-sidebar {
        display: none;
    }

    .jsk-content {
        width: 100%;
    }

    .jsk-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #1A2B5F;
        border-top: 1px solid rgba(255,255,255,0.08);
        height: 60px;
    }

    .jsk-bn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: rgba(255,255,255,0.40);
        text-decoration: none;
        font-size: 10px;
        font-weight: 500;
        transition: color 0.15s;
    }

        .jsk-bn-item svg {
            width: 20px;
            height: 20px;
        }

        .jsk-bn-item:hover {
            color: rgba(255,255,255,0.80);
            text-decoration: none;
        }

        .jsk-bn-item.active {
            color: #E8702A;
        }
}

@media (min-width: 769px) {
    .jsk-bottom-nav {
        display: none;
    }
}

/* ============================================================
   Dashboard
   ============================================================ */

.js-dash {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #F0F2F8;
    min-height: calc(100vh - 56px);
}

/* ── Banner ── */
.js-wb {
    background: linear-gradient(110deg,#0D1B3E 0%,#1A2B5F 60%,#1E3A7A 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.js-wb-bg1 {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(232,112,42,0.08);
    pointer-events: none;
}

.js-wb-bg2 {
    position: absolute;
    right: 80px;
    bottom: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.js-wb-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 24px 18px;
    position: relative;
    z-index: 1;
}

.js-wb-left {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.js-wb-greet {
    font-family: 'Poppins',sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.js-wb-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
}

    .js-wb-sub strong {
        color: #E8702A;
        font-weight: 700;
    }

.js-wb-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.js-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
}

.js-btn-primary:hover {
    background: #C95D1A;
    color: #fff;
    text-decoration: none;
}

.js-btn-primary svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
}

.js-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding:5px 12px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius:20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}

    .js-btn-ghost:hover {
        background: rgba(255,255,255,0.14);
        color: #fff;
        text-decoration: none;
    }

.js-wb-nudges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.js-wb-nudge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    font-family: inherit;
}

    .js-wb-nudge:hover {
        background: rgba(255,255,255,0.18);
        color: #fff;
        text-decoration: none;
    }

    .js-wb-nudge svg {
        width: 11px;
        height: 11px;
        stroke: currentColor;
        fill: none;
    }

.js-wb-ring {
    flex-shrink: 0;
    text-align: center;
    position: relative;
    width: 88px;
}

.js-wb-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-65%);
    text-align: center;
}

.js-wb-ring-pct {
    display: block;
    font-family: 'Poppins',sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.js-wb-ring-sub {
    display: block;
    font-size: 8.5px;
    color: rgba(255,255,255,0.4);
}

.js-wb-ring-lbl {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

.js-wb-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.js-wb-stat {
    padding: 13px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

    .js-wb-stat:last-child {
        border-right: none;
    }

.js-wb-stat-num {
    font-family: 'Poppins',sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.js-wb-stat-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 3px;
}

.js-wb-stat-badge {
    display: inline-flex;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 5px;
}

.js-badge-green {
    background: rgba(24,168,124,0.25);
    color: #4ECBA6;
}

.js-badge-orange {
    background: rgba(232,112,42,0.25);
    color: #F0934A;
}

.js-badge-red {
    background: rgba(224,59,59,0.2);
    color: #F07070;
}

.js-badge-gray {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}

/* ── Two col ── */
.js-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 14px;
    align-items: start;
}

.js-right-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Cards ── */
.js-card {
    background: #fff;
    border: 1px solid #E2E6F0;
    border-radius: 10px;
    overflow: hidden;
}

.js-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #EEF0F5;
}

.js-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #1A2B5F;
}

.js-card-lnk {
    font-size: 11.5px;
    color: #E8702A;
    font-weight: 600;
    text-decoration: none;
}

    .js-card-lnk:hover {
        text-decoration: underline;
    }

/* ── Job rows ── */
.js-job-row {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border-bottom: 1px solid #EEF0F5;
}

.js-job-row:last-child {
    border-bottom: none;
}

.js-job-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #EEF0F5;
    border: 1px solid #E2E6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #5C6480;
    flex-shrink: 0;
}

.js-job-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: contain;
    border: 1px solid #E2E6F0;
    flex-shrink: 0;
}

.js-job-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 10px;
}

.js-job-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1E2640;
    overflow: hidden;
    text-overflow: ellipsis;
}

.js-job-org {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 1px;
    margin-bottom: 4px;
}

.js-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.js-tag {
    font-size: 9.5px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.t-loc {
    background: #EEF0F5;
    color: #5C6480;
}

.t-type {
    background: #EEF1FA;
    color: #1A2B5F;
}

.t-new {
    background: #FDF0E8;
    color: #C95D1A;
    font-weight: 700;
}

.js-apply-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
}

.js-apply-btn:hover {
    background: #C95D1A;
    color: #fff;
    text-decoration: none;
}

/* ── App rows ── */
.js-app-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #EEF0F5;
}

.js-app-row:last-child {
    border-bottom: none;
}

.js-app-logo {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: #EEF0F5;
    border: 1px solid #E2E6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 800;
    color: #5C6480;
    flex-shrink: 0;
}

.js-app-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    object-fit: contain;
    border: 1px solid #E2E6F0;
    flex-shrink: 0;
}

.js-app-info {
    flex: 1;
    min-width: 0;
}

.js-app-title {
    font-size: 12px;
    font-weight: 700;
    color: #1E2640;
    overflow: hidden;
    text-overflow: ellipsis;
}

.js-app-org {
    font-size: 10.5px;
    color: #9AA3BB;
    margin-top: 1px;
}

.js-app-date {
    font-size: 10px;
    color: #9AA3BB;
    margin-top: 1px;
}

.js-status {
    flex-shrink: 0;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

.js-status-review {
    background: #EEF1FA;
    color: #1A2B5F;
}

.js-status-process {
    background: #FEF3C7;
    color: #B45309;
}

.js-status-shortlist {
    background: #E6F7F2;
    color: #0F6E56;
}

.js-status-rejected {
    background: #FEE8E8;
    color: #C0392B;
}

/* ── Quick actions ── */
.js-qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
}

.js-qa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 11px 8px;
    background: #F7F8FB;
    border: 1px solid #EEF0F5;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

    .js-qa:hover {
        background: #EEF1FA;
        text-decoration: none;
    }

.js-qa-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .js-qa-icon svg {
        width: 14px;
        height: 14px;
    }

.js-qa-lbl {
    font-size: 10.5px;
    font-weight: 600;
    color: #1A2B5F;
    text-align: center;
}

/* ── Profile strength ── */
.js-strength-body {
    padding: 14px 16px;
}

.js-strength-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.js-strength-lbl {
    font-size: 12px;
    font-weight: 600;
    color: #1A2B5F;
}

.js-strength-pct {
    font-family: 'Poppins',sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #E8702A;
}

.js-strength-bar {
    height: 6px;
    background: #EEF0F5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.js-strength-fill {
    height: 100%;
    background: linear-gradient(90deg,#E8702A,#F5A623);
    border-radius: 3px;
    transition: width 0.4s;
}

.js-nudge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #EEF0F5;
}

    .js-nudge:last-child {
        border-bottom: none;
    }

.js-nudge-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .js-nudge-dot.done {
        background: #E6F7F2;
    }

    .js-nudge-dot.todo {
        background: #EEF0F5;
    }

    .js-nudge-dot svg {
        width: 9px;
        height: 9px;
    }

.js-nudge-lbl {
    font-size: 11px;
    color: #1E2640;
    flex: 1;
}

    .js-nudge-lbl.done {
        color: #9AA3BB;
        text-decoration: line-through;
    }

.js-nudge-act {
    font-size: 10.5px;
    color: #E8702A;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: none;
    font-family: inherit;
    padding: 0;
}

    .js-nudge-act:hover {
        text-decoration: underline;
    }

/* ── App card ── */
.js-app-card {
    background: linear-gradient(135deg,#0D1B3E,#1A2B5F);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.js-app-card-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.js-app-card-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 11px;
    line-height: 1.5;
}

.js-app-card-btns {
    display: flex;
    gap: 7px;
}

.js-app-card-btn {
    flex: 1;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 7px;
    padding: 7px;
    font-size: 10.5px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

/* ── Empty ── */
.js-empty {
    font-size: 12px;
    color: #9AA3BB;
    font-style: italic;
    padding: 14px 16px;
}

/* ── Responsive ── */
@media (max-width:900px) {
    .js-content {
        grid-template-columns: 1fr;
    }

    .js-wb-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .js-wb-top {
        flex-wrap: wrap;
    }

    .js-job-info {
        flex-flow: column;
        align-items:flex-start;
    }

    .js-job-row {
        align-items: flex-start;
    }
}



/* ============================================================
   JOB FEED  — append to jobseeker.css
   ============================================================ */

/* ── Search bar (full width) ── */
.jf-search-bar {
    background: white;
    border-bottom: 1px solid #E2E6F0;
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 20;
}

    .jf-search-bar form {
        display: flex;
        gap: 8px;
        align-items: center;
    }

.jf-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f2f8;
    border-radius: 7px ;
    padding:0px 0px 0px 12px;
    border: 1px solid transparent;
    transition: border-color 0.15s;
}

.jf-search-box:focus-within {
    border-color: #E8702A;
}

.jf-search-box svg {
    width: 14px;
    height: 14px;
    color: #9AA3BB;
    flex-shrink: 0;
}

.jf-search-box input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 13px;
    color: #1E2640;
    font-family: inherit;
}

.jf-search-box input::placeholder {
    color: #9AA3BB;
}

.jf-search-btn {
    padding: 8px;
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 0 7px 7px 0;
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: background 0.15s;
    font-weight: 600;
    font-size: 12px;
}

.jf-search-btn:hover {
    background: #C95D1A;
}

.jf-search-btn svg {
    width: 15px;
    height: 15px;
    stroke: white;
}

/* make search box flush with button */

.jf-mob-filter-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: #EEF1FA;
    border: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    color: #1A2B5F;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

    .jf-mob-filter-btn svg {
        width: 13px;
        height: 13px;
    }

/* ── Filter bar (full width) ── */
.jf-filter-bar {
    background: white;
    border-bottom: 1px solid #E2E6F0;
    padding: 8px 16px;
    display: flex;
    gap: 6px;
    align-items: center;
    overflow: visible;
    position: relative;
    z-index: 19;
}

    .jf-filter-bar::-webkit-scrollbar {
        display: none;
    }

.jf-fb-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid #E2E6F0;
    border-radius: 20px;
    font-size: 12px;
    color: #5C6480;
    background: white;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

    .jf-fb-btn svg {
        width: 11px;
        height: 11px;
        flex-shrink: 0;
    }

    .jf-fb-btn:hover {
        border-color: #1A2B5F;
        color: #1A2B5F;
    }

    .jf-fb-btn.active {
        background: #EEF1FA;
        border-color: #1A2B5F;
        color: #1A2B5F;
        font-weight: 500;
    }

.jf-fb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E8702A;
    flex-shrink: 0;
}

.jf-fb-sep {
    width: 1px;
    height: 20px;
    background: #E2E6F0;
    flex-shrink: 0;
    margin: 0 2px;
}

.jf-fb-clear {
    background: none;
    border: none;
    padding: 6px 4px;
    font-size: 12px;
    color: #E8702A;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
}

.jf-fb-clear:hover {
    text-decoration: underline;
}

/* ── Body: 2-col (jobs + right panel) ── */
.jf-body {
    display: flex;
    align-items: flex-start;
    min-height: calc(100vh - 120px);
    background: #f0f2f8;
}

/* ── Jobs column ── */
.jf-jobs-col {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
}

/* ── Result bar ── */
.jf-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 10px;
    height: 30px;
}

.jf-result-txt {
    font-size: 12.5px;
    color: #5C6480;
}

.jf-result-txt strong {
    color: #E8702A;
    font-weight: 600;
}

.jf-sort-wrap {
    position: relative;
}

.jf-sort-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 5px;
    border: 1px solid #E2E6F0;
    border-radius: 7px;
    background: white;
    font-size: 12.5px;
    font-weight: 500;
    color: #1A2B5F;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s;
    white-space: nowrap;
}

    .jf-sort-btn:hover {
        border-color: #1A2B5F;
    }

    .jf-sort-btn svg:first-child {
        width: 14px;
        height: 14px;
        color: #5C6480;
    }

    .jf-sort-btn svg:last-child {
        width: 11px;
        height: 11px;
        color: #9AA3BB;
        transition: transform 0.15s;
    }

    .jf-sort-btn.open svg:last-child {
        transform: rotate(180deg);
    }

.jf-sort-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid #E2E6F0;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    min-width: 150px;
    z-index: 50;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}

    .jf-sort-dropdown.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

.jf-sort-item {
    padding: 10px 14px;
    font-size: 12.5px;
    color: #2D3452;
    cursor: pointer;
    transition: background 0.1s;
}

.jf-sort-item:hover {
    background: #f7f8fb;
}

.jf-sort-item.active {
    color: #E8702A;
    font-weight: 600;
    background: #FDF0E8;
}



/* no results */
.jf-no-results {
    text-align: center;
    padding: 48px 24px;
    background: white;
    border-radius: 9px;
    border: 1px solid #E2E6F0;
}

.jf-no-results img {
    height: 100px;
    margin-bottom: 16px;
    opacity: 0.65;
}

.jf-no-results h2 {
    font-size: 15px;
    font-weight: 600;
    color: #1A2B5F;
    margin-bottom: 6px;
}

.jf-no-results p {
    font-size: 12.5px;
    color: #5C6480;
    margin-bottom: 16px;
}

.jf-pagination {
    margin-top: 20px;
    text-align: center;
}

/* ── Right panel ── */
.jf-right-panel {
    width: 270px;
    min-width: 270px;
    flex-shrink: 0;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 75px;
    align-self: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
}

.jf-rp-card {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 9px;
    border: 1px solid #E2E6F0;
    padding: 12px 13px;
}

.jf-rp-label {
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9AA3BB;
    margin-bottom: 8px;
}

.jf-rp-ad-slot {
    height: 90px;
    background: #f7f8fb;
    border: 1px dashed #E2E6F0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    color: #C0C6D8;
}

.jf-rp-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 11px;
    color: #2D3452;
}

.jf-rp-stat:last-child {
    margin-bottom: 0;
}

.jf-rp-stat-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jf-rp-stat-icon svg {
    width: 12px;
    height: 12px;
}

.cs-strip {
    position: absolute;
    top: 16px;
    right: -22px;
    background: #E8702A;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 28px;
    transform: rotate(35deg);
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ── Dropdown panel ── */
.jf-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: white;
    border: 1px solid #E2E6F0;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    width: 280px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}

    .jf-dropdown.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

.jf-dd-simple-type {
    width: 200px;
}

.jf-dd-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-bottom: 1px solid #EEF0F5;
}

    .jf-dd-search-wrap svg {
        width: 13px;
        height: 13px;
        color: #9AA3BB;
        flex-shrink: 0;
    }

    .jf-dd-search-wrap input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 12.5px;
        color: #1E2640;
        background: none;
        font-family: inherit;
    }

        .jf-dd-search-wrap input::placeholder {
            color: #9AA3BB;
        }

.jf-dd-list {
    list-style: none;
    padding: 5px 0;
    margin: 0;
    max-height: 230px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #E2E6F0 transparent;
}

.jf-dd-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    cursor: pointer;
    font-size: 12.5px;
    color: #2D3452;
}

    .jf-dd-item:hover {
        background: #f7f8fb;
    }

    .jf-dd-item.checked {
        color: #1A2B5F;
        font-weight: 500;
    }

    .jf-dd-item input[type="checkbox"] {
        width: 14px;
        height: 14px;
        accent-color: #E8702A;
        cursor: pointer;
        flex-shrink: 0;
    }

    .jf-dd-item label {
        cursor: pointer;
        flex: 1;
    }

.jf-dd-simple-item {
    padding: 8px 14px;
    font-size: 12.5px;
    color: #2D3452;
    cursor: pointer;
}

    .jf-dd-simple-item:hover {
        background: #f7f8fb;
    }

    .jf-dd-simple-item.selected {
        color: #E8702A;
        font-weight: 600;
    }

.jf-dd-more {
    padding: 6px 13px;
}

    .jf-dd-more a {
        font-size: 12px;
        color: #E8702A;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
    }

        .jf-dd-more a:hover {
            text-decoration: underline;
        }

.jf-dd-empty {
    padding: 12px 13px;
    font-size: 12px;
    color: #9AA3BB;
    text-align: center;
}

.jf-dd-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-top: 1px solid #EEF0F5;
}

.jf-dd-clear {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #E8702A;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

    .jf-dd-clear:hover {
        text-decoration: underline;
    }

.jf-dd-apply {
    padding: 5px 16px;
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

    .jf-dd-apply:hover {
        background: #C95D1A;
    }

/* ── Mobile filter drawer ── */
.jf-mob-drawer {
    display: flex;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 78vh;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 16px 16px 0 0;
    z-index: 1100;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.28s ease, visibility 0.28s;
}

    .jf-mob-drawer.open {
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }

.jf-mob-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    background: rgba(0,0,0,0.4);
    z-index: 1050;
}

    .jf-mob-overlay.open {
        display: block;
    }

.jf-mob-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #EEF0F5;
    font-size: 14px;
    font-weight: 600;
    color: #1A2B5F;
    flex-shrink: 0;
}

    .jf-mob-drawer-head button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #5C6480;
    }

        .jf-mob-drawer-head button svg {
            width: 18px;
            height: 18px;
        }

.jf-mob-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.jf-mob-drawer-foot {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid #EEF0F5;
    flex-shrink: 0;
}

.jf-apply-btn {
    flex: 1;
    padding: 10px;
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

    .jf-apply-btn:hover {
        background: #C95D1A;
    }

.jf-dd-loading {
    padding: 12px 13px;
    font-size: 12px;
    color: #9AA3BB;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .jf-dd-loading::before {
        content: '';
        width: 12px;
        height: 12px;
        border: 2px solid #E2E6F0;
        border-top-color: #E8702A;
        border-radius: 50%;
        animation: jf-spin 0.6s linear infinite;
        flex-shrink: 0;
    }

@keyframes jf-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ── Responsive ── */
@media (max-width: 900px) {
    .jf-right-panel {
        display: none;
    }
}

@media (max-width: 768px) {
    .jf-mob-filter-btn {
        display: flex;
    }

    .jf-filter-bar {
        display: none;
    }

    .jf-jobs-col {
        padding: 10px;
    }

    .jf-search-bar {
        padding: 8px 10px;
    }
}

@media (min-width: 769px) {
    .jf-mob-filter-btn {
        display: none;
    }

    .jf-mob-drawer {
        display: none !important;
    }

    .jf-mob-overlay {
        display: none !important;
    }
}

/* ── App download card — append to jobseeker.css ── */

.jf-rp-app {
    background: #111E47 !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.jf-rp-app-bg1 {
    position: absolute;
    right: -25px;
    top: -25px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(232,112,42,0.12);
    pointer-events: none;
}

.jf-rp-app-bg2 {
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.jf-rp-app-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(232,112,42,0.2);
    color: #FFB380;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

    .jf-rp-app-tag svg {
        width: 10px;
        height: 10px;
    }

.jf-rp-app-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.jf-rp-app-sub {
    font-size: 10.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.jf-rp-app-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.jf-rp-app-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.jf-rp-app-qr {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 7px;
    padding: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .jf-rp-app-qr svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.jf-rp-app-qr-lbl {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    white-space: nowrap;
}

.jf-rp-app-stores {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jf-rp-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    padding: 7px 9px;
    text-decoration: none;
    transition: background 0.15s;
}

    .jf-rp-store-btn:hover {
        background: rgba(255,255,255,0.14);
        text-decoration: none;
    }

    .jf-rp-store-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

.jf-rp-store-txt {
    display: flex;
    flex-direction: column;
}

.jf-rp-store-sub {
    font-size: 8px;
    color: rgba(255,255,255,0.4);
    line-height: 1;
}

.jf-rp-store-name {
    font-size: 10.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}


/* ============================================================
   Applied Jobs — append to jobseeker.css
   ============================================================ */

/* ── Page layout ── */
.aj-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-height: calc(100vh - 56px);
    background: #f0f2f8;
}

.aj-main {
    flex: 1;
    min-width: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Search ── */
.aj-search {
    display: flex;
    background: white;
    border-radius: 8px;
    border: 1px solid #E2E6F0;
    overflow: hidden;
    transition: border-color 0.15s;
}

    .aj-search:focus-within {
        border-color: #E8702A;
    }

.aj-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
}

    .aj-search-box svg {
        width: 14px;
        height: 14px;
        color: #9AA3BB;
        flex-shrink: 0;
    }

    .aj-search-box input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 13px;
        color: #1E2640;
        background: none;
        font-family: inherit;
    }

        .aj-search-box input::placeholder {
            color: #9AA3BB;
        }

.aj-search-btn {
    padding: 0 16px;
    background: #E8702A;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .aj-search-btn:hover {
        background: #C95D1A;
    }

    .aj-search-btn svg {
        width: 15px;
        height: 15px;
        stroke: white;
        fill: none;
        stroke-width: 2.5px;
    }

/* ── Stats ── */
.aj-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.aj-stat {
    background: white;
    border-radius: 8px;
    border: 1px solid #E2E6F0;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aj-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .aj-stat-icon svg {
        width: 15px;
        height: 15px;
    }

.aj-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: #1A2B5F;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.aj-stat-lbl {
    font-size: 10px;
    color: #9AA3BB;
    margin-top: 2px;
}

/* ── Card ── */
.aj-card {
    background: white;
    border-radius: 9px;
    border: 1px solid #E2E6F0;
    padding: 13px 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    margin-bottom: 10px;
}

.aj-card:hover {
    border-color: #E8702A;
    box-shadow: 0 2px 12px rgba(232,112,42,0.07);
}

.aj-card-top {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.aj-logo {
    width: 44px;
    height: 44px;
    border-radius: 7px;
    border: 1px solid #EEF0F5;
    background: #f7f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #5C6480;
    flex-shrink: 0;
    overflow: hidden;
}

    .aj-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.aj-info {
    flex: 1;
    min-width: 0;
}

.aj-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A2B5F;
    line-height: 1.35;
    margin-bottom: 5px;
}

.aj-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #5C6480;
    margin-bottom: 3px;
}

    .aj-meta-row svg {
        width: 12px;
        height: 12px;
        color: #9AA3BB;
        flex-shrink: 0;
    }

/* Status + view JD */
.aj-status-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.aj-status {
    font-size: 10.5px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.s-applied {
    background: #EEF1FA;
    color: #1A2B5F;
}

.s-shortlisted {
    background: #E6F7F2;
    color: #18A87C;
}

.s-viewed {
    background: #FEF3C7;
    color: #D97706;
}

.s-rejected {
    background: #FCEBEB;
    color: #A32D2D;
}

.aj-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 500;
    color: #E8702A;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    white-space: nowrap;
    transition: color 0.15s;
}

    .aj-view-btn:hover {
        color: #C95D1A;
    }

    .aj-view-btn svg {
        width: 11px;
        height: 11px;
    }

/* Footer */
.aj-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 9px;
    border-top: 1px solid #EEF0F5;
    gap: 8px;
}

.aj-applied-on {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    color: #9AA3BB;
    flex: 1;
}

    .aj-applied-on svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

.aj-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.aj-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid #E2E6F0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 11.5px;
    color: #5C6480;
    font-family: inherit;
    transition: border-color 0.15s;
}

    .aj-action-btn:hover {
        border-color: #E8702A;
    }

    .aj-action-btn svg {
        width: 12px;
        height: 12px;
    }

/* Empty state */
.aj-empty {
    text-align: center;
    padding: 56px 24px;
    background: white;
    border-radius: 9px;
    border: 1px solid #E2E6F0;
}

    .aj-empty svg {
        width: 48px;
        height: 48px;
        color: #E2E6F0;
        margin-bottom: 14px;
    }

    .aj-empty h2 {
        font-size: 15px;
        font-weight: 600;
        color: #1A2B5F;
        margin-bottom: 6px;
    }

    .aj-empty p {
        font-size: 12.5px;
        color: #9AA3BB;
        margin-bottom: 18px;
    }

.aj-browse-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #E8702A;
    color: #fff;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

    .aj-browse-btn:hover {
        background: #C95D1A;
        color: #fff;
        text-decoration: none;
    }

/* ── Right panel ── */
.aj-right-panel {
    width: 260px;
    min-width: 260px;
    flex-shrink: 0;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 56px;
    align-self: flex-start;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .aj-right-panel {
        display: none;
    }

    .aj-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .aj-stats {
        grid-template-columns: 1fr 1fr;
    }

    .aj-main {
        padding: 10px;
        gap: 10px;
    }

    .aj-footer {
        flex-wrap: wrap;
    }

    .aj-applied-on {
        flex: 0 0 100%;
    }

    .aj-actions {
        width: 100%;
        justify-content: flex-end;
    }
}


/* ============================================================
   Profile Setup — shared layout + card styles
   Append to jobseeker.css
   ============================================================ */

/* ── Page wrapper ── */
.ps-wrap {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f0f2f8;
    min-height: calc(100vh - 56px);
}

/* ── Card ── */
.ps-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #E2E6F0;
}

.ps-card-head {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #EEF0F5;
}

.ps-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1A2B5F;
    margin-bottom: 2px;
}

.ps-card-sub {
    font-size: 12px;
    color: #9AA3BB;
    margin: 0;
}

.ps-card-body {
    padding: 20px;
}

.ps-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid #EEF0F5;
    background: #FAFBFD;
}

/* ── Buttons ── */
.ps-btn-next {
    padding: 9px 22px;
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

    .ps-btn-next:hover {
        background: #C95D1A;
    }

.ps-btn-back {
    padding: 9px 18px;
    border: 1px solid #E2E6F0;
    border-radius: 7px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: #5C6480;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s;
    text-decoration: none;
    display: inline-block;
}

    .ps-btn-back:hover {
        border-color: #1A2B5F;
        color: #1A2B5F;
        text-decoration: none;
    }

.ps-btn-skip {
    padding: 9px 18px;
    border: 1px solid #E2E6F0;
    border-radius: 7px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: #9AA3BB;
    cursor: pointer;
    font-family: inherit;
}

    .ps-btn-skip:hover {
        border-color: #9AA3BB;
    }

/* ── Responsive ── */
@media (max-width: 600px) {
    .ps-wrap {
        padding: 12px;
        gap: 12px;
    }

    .ps-card-body {
        padding: 14px;
    }

    .ps-card-footer {
        flex-wrap: wrap;
        gap: 8px;
    }

    .ps-btn-next, .ps-btn-back {
        width: 100%;
        text-align: center;
    }
}


/* ============================================================
   Profile Setup Stepper — Tab style
   Replaces previous profile-stepper.css
   ============================================================ */

/* ── Outer bar ── */
.ps-bar {
    background: white;
    border-radius: 10px;
    border: 1px solid #E2E6F0;
    overflow: hidden;
    margin-bottom: 0;
}

/* ── Top strip ── */
.ps-bar-top {
    background: #111E47;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ps-bar-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.ps-bar-step-count {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    margin-left: 4px;
}

.ps-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ps-bar-active-lbl {
    font-size: 11.5px;
    font-weight: 500;
    color: #E8702A;
}

.ps-bar-pct {
    font-size: 12px;
    font-weight: 600;
    color: #E8702A;
}

.ps-bar-step.active .ps-bar-circle {
    background: #18A87C;
    border-color: #18A87C;
    color: #fff;
}

.ps-bar-step.active .ps-bar-lbl {
    color: #18A87C;
}

.ps-bar-step.active .ps-bar-sub {
    color: #9AA3BB;
}

/* ── Progress bar ── */
.ps-bar-prog-track {
    height: 3px;
    background: #EEF0F5;
}

.ps-bar-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #E8702A, #FF9A5C);
    transition: width 0.3s ease;
}

/* ── Tab steps ── */
.ps-bar-steps {
    display: flex;
    align-items: stretch;
}

.ps-bar-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    position: relative;
    border-right: 1px solid #E2E6F0;
    background: white;
    transition: background 0.15s;
    text-decoration: none;
}

    .ps-bar-step:last-child {
        border-right: none;
    }

    /* bottom indicator */
    .ps-bar-step::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
    }

    .ps-bar-step.current::after {
        background: #E8702A;
    }

    .ps-bar-step.done::after {
        background: #18A87C;
    }

    .ps-bar-step.disabled::after {
        background: transparent;
    }

    .ps-bar-step.current {
        background: #FDF8F5;
    }

    .ps-bar-step.done {
        background: #F7FDFB;
    }

    .ps-bar-step.disabled {
        background: white;
        cursor: not-allowed;
    }

/* ── Badge (circle) ── */
.ps-bar-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

    .ps-bar-circle svg {
        width: 11px;
        height: 11px;
    }

.ps-bar-step.done .ps-bar-circle {
    background: #18A87C;
    color: white;
}

.ps-bar-step.current .ps-bar-circle {
    background: #E8702A;
    color: white;
}

.ps-bar-step.disabled .ps-bar-circle {
    background: #EEF0F5;
    color: #C0C6D8;
}

/* ── Labels ── */
.ps-bar-lbl-wrap {
    display: flex;
    flex-direction: column;
}

.ps-bar-lbl {
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.ps-bar-sub {
    font-size: 9.5px;
    margin-top: 2px;
}

.ps-bar-step.done .ps-bar-lbl {
    color: #18A87C;
    font-weight: 600;
}

.ps-bar-step.current .ps-bar-lbl {
    color: #E8702A;
    font-weight: 700;
}

.ps-bar-step.disabled .ps-bar-lbl {
    color: #C0C6D8;
}

.ps-bar-step.done .ps-bar-sub {
    color: #18A87C;
    opacity: 0.65;
}

.ps-bar-step.current .ps-bar-sub {
    color: #E8702A;
    opacity: 0.7;
}

.ps-bar-step.disabled .ps-bar-sub {
    color: #C0C6D8;
}

/* ── Responsive ── */
.ps-mob-only {
    display: none;
}

@media (max-width: 768px) {
    .ps-bar-lbl-wrap {
        display: none;
    }

    .ps-bar-step.current .ps-bar-lbl-wrap {
        display: flex;
    }

    .ps-mob-only {
        display: inline;
    }

    .ps-bar-step {
        padding: 10px 6px;
    }

    .ps-bar-circle {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .ps-bar-step-count {
        display: none;
    }

    .ps-bar-step.current .ps-bar-lbl-wrap {
        display: none;
    }
}

/* ============================================================
   Resume Detail — append to jobseeker.css
   ============================================================ */

/* ── Layout ── */
.rv-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
}

/* ── LEFT column ── */
.rv-upload-col {
    display: flex;
    flex-direction: column;
}

/* AI nudge */
.rv-ai-nudge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FDF8F5;
    border: 1px solid #F5DCC8;
    border-radius: 8px;
    padding: 11px 13px;
}

.rv-ai-icon {
    font-size: 17px;
    line-height: 1;
    flex-shrink: 0;
}

.rv-ai-title {
    font-size: 12px;
    font-weight: 600;
    color: #1A2B5F;
    margin-bottom: 2px;
}

.rv-ai-sub {
    font-size: 11px;
    color: #9AA3BB;
    line-height: 1.4;
}

/* Drop zone */
.rv-drop-zone {
    border: 2px dashed #D8DCE8;
    border-radius: 9px;
    background: #FAFBFD;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
    overflow: hidden;
}

    .rv-drop-zone:hover {
        border-color: #E8702A;
        background: #FDF8F5;
    }

/* hide the actual file input — visually replaced by custom zone */
.rv-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.rv-dz-content {
    padding: 28px 16px;
    text-align: center;
    pointer-events: none;
}

.rv-dz-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    background: #EEF1FA;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rv-dz-icon svg {
        width: 22px;
        height: 22px;
        color: #1A2B5F;
    }

.rv-dz-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A2B5F;
    margin-bottom: 3px;
}

.rv-dz-sub {
    font-size: 11.5px;
    color: #9AA3BB;
    margin-bottom: 10px;
}

.rv-dz-pills {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.rv-pill {
    padding: 2px 9px;
    background: #EEF0F5;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #5C6480;
}

/* Uploaded file card */
.rv-file-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F7FDFB;
    border: 1px solid #C6EDD9;
    border-radius: 8px;
    padding: 11px 13px;
    margin-top: 12px;
}

.rv-fc-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: white;
    border: 1px solid #E2E6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .rv-fc-icon svg {
        width: 17px;
        height: 17px;
    }

.rv-fc-info {
    flex: 1;
    min-width: 0;
}

.rv-fc-name {
    font-size: 12px;
    font-weight: 600;
    color: #1A2B5F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rv-fc-size {
    font-size: 10.5px;
    color: #9AA3BB;
    margin-top: 1px;
}

.rv-fc-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #18A87C;
    white-space: nowrap;
    flex-shrink: 0;
}

    .rv-fc-status svg {
        width: 12px;
        height: 12px;
    }

.rv-fc-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #E2E6F0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: border-color 0.15s;
}

    .rv-fc-remove:hover {
        border-color: #dc3545;
    }

    .rv-fc-remove svg {
        width: 11px;
        height: 11px;
        color: #9AA3BB;
    }

/* Form fields */
.rv-form-lbl {
    font-size: 11.5px;
    font-weight: 600;
    color: #2D3452;
    display: block;
    margin-bottom: 5px;
}

.rv-form-inp {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12.5px;
    color: #1E2640;
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s;
}

    .rv-form-inp:focus {
        border-color: #E8702A;
    }

    .rv-form-inp::placeholder {
        color: #C0C6D8;
    }

/* ── RIGHT column ── */
.rv-prev-col {
    display: flex;
    flex-direction: column;
}

.rv-prev-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A2B5F;
    margin-bottom: 12px;
}

.rv-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 2px;
    scrollbar-width: thin;
    scrollbar-color: #E2E6F0 transparent;
}

    .rv-list::-webkit-scrollbar {
        width: 4px;
    }

    .rv-list::-webkit-scrollbar-thumb {
        background: #E2E6F0;
        border-radius: 2px;
    }

/* Resume card */
.rv-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border: 1.5px solid #E2E6F0;
    border-radius: 9px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    background: white;
}

    .rv-card:hover {
        border-color: #E8702A;
        box-shadow: 0 2px 10px rgba(232,112,42,0.07);
    }

    .rv-card.active-cv {
        border-color: #18A87C;
        background: #F7FDFB;
    }

.rv-card-icon {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rv-icon-doc {
    background: #EEF1FA;
}

.rv-icon-pdf {
    background: #FCEBEB;
}

.rv-card-info {
    flex: 1;
    min-width: 0;
}

.rv-card-name {
    font-size: 12px;
    font-weight: 600;
    color: #1A2B5F;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.rv-card-date {
    font-size: 10px;
    color: #9AA3BB;
}

.rv-card-eye {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #E2E6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s;
}

    .rv-card-eye:hover {
        border-color: #E8702A;
    }

/* badge */
.rv-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

    .rv-card-badge svg {
        width: 11px;
        height: 11px;
    }

.rv-badge-active {
    background: #E6F7F2;
    color: #18A87C;
}

.rv-badge-default {
    background: #EEF0F5;
    color: #9AA3BB;
}

.rv-card-radio {
    width: 16px;
    height: 16px;
    accent-color: #E8702A;
    cursor: pointer;
    flex-shrink: 0;
}

/* empty state */
.rv-empty {
    padding: 32px 20px;
    text-align: center;
    border: 1px dashed #E2E6F0;
    border-radius: 9px;
    background: #f7f8fb;
}

    .rv-empty svg {
        width: 36px;
        height: 36px;
        color: #C0C6D8;
        margin-bottom: 10px;
    }

    .rv-empty p {
        font-size: 12px;
        color: #9AA3BB;
    }

/* ── Responsive ── */
@media (max-width: 860px) {
    .rv-layout {
        grid-template-columns: 1fr;
    }

    .rv-list {
        max-height: 260px;
    }
}


/* ============================================================
   Personal Detail — append to jobseeker.css
   ============================================================ */

/* ── Layout ── */
.pd-grid {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    align-items: flex-start;
}

/* ── Profile picture ── */
.pd-pic-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pd-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #EEF1FA;
    border: 3px solid #E2E6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: border-color 0.15s;
}

    .pd-avatar:hover {
        border-color: #E8702A;
    }

    .pd-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.pd-avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.15s;
}

.pd-avatar:hover .pd-avatar-overlay {
    opacity: 1;
}

.pd-avatar-overlay svg {
    width: 18px;
    height: 18px;
    color: white;
}

.pd-avatar-overlay span {
    font-size: 10px;
    color: white;
    font-weight: 500;
}

.pd-pic-lbl {
    font-size: 10.5px;
    color: #9AA3BB;
    text-align: center;
    line-height: 1.5;
}

.pd-pic-btns {
    display: flex;
    gap: 6px;
}

.pd-pic-btn {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: opacity 0.15s;
}

    .pd-pic-btn:hover {
        opacity: 0.85;
    }

    .pd-pic-btn.primary {
        background: #EEF1FA;
        color: #1A2B5F;
    }

    .pd-pic-btn.danger {
        background: #FCEBEB;
        color: #A32D2D;
    }

/* Crop panel */
.pd-crop-panel {
    width: 100%;
    background: white;
    border: 1px solid #E2E6F0;
    border-radius: 9px;
    padding: 12px;
    margin-top: 4px;
}

.pd-crop-lbl {
    font-size: 10.5px;
    color: #9AA3BB;
    margin-bottom: 8px;
    text-align: center;
}

.pd-crop-area {
    width: 100%;
    height: 160px;
    background: #f0f2f8;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 10px;
}

    .pd-crop-area img {
        max-width: 100%;
        display: block;
    }

.pd-crop-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.pd-crop-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

    .pd-crop-btn.save {
        background: #E8702A;
        color: white;
    }

    .pd-crop-btn.cancel {
        background: #EEF0F5;
        color: #5C6480;
    }

/* ── Form fields ── */
.pd-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-section {
}

.pd-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #9AA3BB;
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 1px solid #EEF0F5;
}

.pd-row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

    .pd-row:last-child {
        margin-bottom: 0;
    }

.pd-row-2 {
    grid-template-columns: 1fr 1fr;
}

.pd-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.pd-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pd-lbl {
    font-size: 12px;
    font-weight: 600;
    color: #2D3452;
    margin-bottom: 5px;
}

    .pd-lbl.required::after {
        content: ' *';
        color: #E8702A;
    }

.pd-lbl-hint {
    font-size: 10px;
    color: #9AA3BB;
    font-weight: 400;
}

.pd-inp {
    padding: 8px 11px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12.5px;
    color: #1E2640;
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s;
}

    .pd-inp:focus {
        border-color: #E8702A;
    }

    .pd-inp::placeholder {
        color: #C0C6D8;
    }

.pd-sel {
    padding: 10px 11px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12.5px;
    color: #1E2640;
    outline: none;
    font-family: inherit;
    background: white;
    width: 100%;
    transition: border-color 0.15s;
}

    .pd-sel:focus {
        border-color: #E8702A;
    }

.pd-textarea {
    padding: 9px 12px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12.5px;
    color: #1E2640;
    outline: none;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.15s;
}

.pd-textarea:focus {
    border-color: #E8702A;
}

.pd-textarea::placeholder {
    color: #C0C6D8;
}

.pd-char-count {
    font-size: 10.5px;
    color: #9AA3BB;
    text-align: right;
    margin-top: 3px;
}

/* CTC preview */
.pd-ctc-preview {
    font-size: 11.5px;
    color: #18A87C;
    font-weight: 500;
    margin-top: 4px;
    min-height: 18px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-pic-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pd-row-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .pd-row-2, .pd-row-3 {
        grid-template-columns: 1fr;
    }
}


/* ── Crop modal (inside dynamicModal) ── */
.pd-crop-modal-body {
    display: flex;
    flex-direction: column;
}

.pd-crop-area-wrap {
    width: 100%;
    height: 300px;
    background: #111E47;
    overflow: hidden;
    position: relative;
}

    .pd-crop-area-wrap img {
        max-width: 100%;
        display: block;
    }

.pd-crop-zoom-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid #EEF0F5;
}

.pd-crop-zoom-slider {
    flex: 1;
    accent-color: #E8702A;
    cursor: pointer;
    height: 4px;
}

.pd-crop-preview-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f7f8fb;
    border-bottom: 1px solid #EEF0F5;
}

.pd-crop-preview-lbl {
    font-size: 11px;
    color: #9AA3BB;
    flex-shrink: 0;
}

.pd-crop-preview-circles {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pd-crop-preview-circle {
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #E2E6F0;
    background: #EEF1FA;
    flex-shrink: 0;
}

    .pd-crop-preview-circle.lg {
        width: 56px;
        height: 56px;
    }

    .pd-crop-preview-circle.md {
        width: 36px;
        height: 36px;
    }

    .pd-crop-preview-circle.sm {
        width: 24px;
        height: 24px;
    }

.pd-crop-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.pd-crop-hint {
    font-size: 12px;
    color: #0f1e3c;
}

.pd-crop-btns {
    display: flex;
    gap: 8px;
}

.pd-crop-btn {
    padding: 8px 18px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: opacity 0.15s;
}

    .pd-crop-btn:hover {
        opacity: 0.88;
    }

    .pd-crop-btn.cancel {
        background: #EEF0F5;
        color: #5C6480;
    }

    .pd-crop-btn.save {
        background: #E8702A;
        color: white;
        font-weight: 600;
    }


/* ============================================================
   Education Detail — append to jobseeker.css
   ============================================================ */

/* ── Page body ── */
.edu-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* ── Qualification card ── */
.edu-qcard {
    border: 1.5px solid #E2E6F0;
    border-radius: 9px;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 15px;
}

    .edu-qcard.active {
        border-color: #E8702A;
        box-shadow: 0 2px 12px rgba(232,112,42,0.08);
    }

    .edu-qcard.filled {
        border-color: #18A87C;
    }


/* ── Card header ── */
.edu-qcard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
    border-radius: 9px 9px 0 0;
}

    .edu-qcard-head:hover {
        background: #fafbfd;
    }

.edu-qcard.active .edu-qcard-head {
    background: #FDF8F5;
}

.edu-qcard.filled .edu-qcard-head {
    background: #F7FDFB;
}

.edu-qcard.default .edu-qcard-head {
    border-radius: 9px;
}

.edu-qcard-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.edu-qcard-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ── Icon ── */
.edu-qcard-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

    .edu-qcard-icon svg {
        width: 18px;
        height: 18px;
        transition: color 0.2s;
    }

/* default state */
.edu-qcard.default .edu-qcard-icon {
    background: #EEF1FA;
}

    .edu-qcard.default .edu-qcard-icon svg {
        color: #1A2B5F;
    }

/* active state */
.edu-qcard.active .edu-qcard-icon {
    background: #FDF0E8;
}

    .edu-qcard.active .edu-qcard-icon svg {
        color: #E8702A;
    }

/* filled state */
.edu-qcard.filled .edu-qcard-icon {
    background: #E6F7F2;
}

    .edu-qcard.filled .edu-qcard-icon svg {
        color: #18A87C;
    }

/* ── Card info ── */
.edu-qcard-info {
    min-width: 0;
    flex: 1;
}

.edu-qcard-type {
    font-size: 13px;
    font-weight: 600;
    color: #1A2B5F;
    white-space: nowrap;
}

.edu-qcard.active .edu-qcard-type {
    color: #E8702A;
}

.edu-qcard.filled .edu-qcard-type {
    color: #18A87C;
}

.edu-qcard-hint {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edu-qcard.filled .edu-qcard-hint {
    color: #18A87C;
    opacity: 0.8;
}

/* ── Badge ── */
.edu-qcard-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 600;
    white-space: nowrap;
}

    .edu-qcard-badge.req {
        background: #EEF1FA;
        color: #1A2B5F;
    }

    .edu-qcard-badge.opt {
        background: #EEF0F5;
        color: #9AA3BB;
    }

    .edu-qcard-badge.done {
        background: #E6F7F2;
        color: #18A87C;
    }

/* ── Chevron ── */
.edu-qcard-chevron {
    width: 16px;
    height: 16px;
    color: #C0C6D8;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.edu-qcard.active .edu-qcard-chevron {
    transform: rotate(180deg);
    color: #E8702A;
}

.edu-qcard.filled .edu-qcard-chevron {
    color: #18A87C;
}

/* ── Remove button ── */
.edu-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: #FCEBEB;
    color: #A32D2D;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

    .edu-remove-btn:hover {
        background: #F5D0D0;
    }

    .edu-remove-btn svg {
        width: 12px;
        height: 12px;
    }

/* ── Card body (form) ── */
.edu-qcard-body {
    padding: 16px;
    border-top: 1px solid #EEF0F5;
    background: white;
    border-radius: 0 0 9px 9px;
}

/* ── Form rows ── */
.edu-row {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

    .edu-row:last-child {
        margin-bottom: 0;
    }

.edu-row-2 {
    grid-template-columns: 1fr 1fr;
}

.edu-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.edu-date-holder {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.edu-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.edu-lbl {
    display: block;
    position: relative;
    font-size: 11.5px;
    font-weight: 500;
    color: #2D3452;
    margin-bottom: 4px;
}

    .edu-lbl.required::after {
        content: ' *';
        color: #E8702A;
    }

.edu-inp {
    padding: 5px 11px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12.5px;
    color: #1E2640;
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s;
}

    .edu-inp:focus {
        border-color: #E8702A;
    }

    .edu-inp::placeholder {
        color: #C0C6D8;
    }

.edu-sel {
    padding: 8px 11px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12.5px;
    color: #1E2640;
    outline: none;
    font-family: inherit;
    background: white;
    width: 100%;
    transition: border-color 0.15s;
}

    .edu-sel:focus {
        border-color: #E8702A;
    }

.ts-wrapper.form-control.autocomplete:focus-within {
    border-color: #e8702a;
    box-shadow: none !important;
}
/* ── Course type pills ── */
.edu-pill-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.edu-pill {
    padding: 5px 11px;
    border-radius: 20px;
    border: 1.5px solid #E2E6F0;
    background: white;
    font-size: 11.5px;
    font-weight: 500;
    color: #5C6480;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}

    .edu-pill:hover {
        border-color: #E8702A;
        color: #E8702A;
    }

    .edu-pill.active {
        border-color: #E8702A;
        background: #FDF0E8;
        color: #E8702A;
        font-weight: 600;
    }

/* ── Add button ── */
.edu-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px dashed #E2E6F0;
    border-radius: 9px;
    background: white;
    color: #5C6480;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    width: 100%;
}

    .edu-add-btn:hover {
        border-color: #E8702A;
        color: #E8702A;
        background: #FDF8F5;
    }

    .edu-add-btn svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

/* ── Responsive ── */
@media (max-width: 768px) {
    .edu-body {
        padding: 12px 14px;
    }

    .edu-row-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .edu-row-2,
    .edu-row-3 {
        grid-template-columns: 1fr;
    }

    .edu-qcard-hint {
        display: none;
    }
}

/* ── Action buttons (Add / Remove) ── */
.edu-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.15s;
    flex-shrink: 0;
}

    .edu-action-btn svg {
        width: 11px;
        height: 11px;
    }

    .edu-action-btn.add {
        background: #EEF1FA;
        color: #1A2B5F;
    }

        .edu-action-btn.add:hover {
            background: #1A2B5F;
            color: white;
        }

    .edu-action-btn.remove {
        background: #FCEBEB;
        color: #A32D2D;
    }

        .edu-action-btn.remove:hover {
            background: #A32D2D;
            color: white;
        }

/* ── Required / Filled badges ── */
.edu-req-badge {
    padding: 4px 10px;
    border-radius: 6px;
    background: #EEF1FA;
    color: #1A2B5F;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.edu-filled-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #E6F7F2;
    color: #18A87C;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ============================================================
   Experience Detail — append to jobseeker.css
   ============================================================ */
.exp-fresher-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.exp-fresher-lbl {
    font-size: 12px;
    color: #5C6480;
    white-space: nowrap;
    font-weight: 600;
}

.exp-toggle-track {
    width: 38px;
    height: 22px;
    border-radius: 20px;
    background: #DDE1EC;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}

    .exp-toggle-track.is-on {
        background: #E8702A;
    }

.exp-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.exp-toggle-track.is-on .exp-toggle-knob {
    transform: translateX(16px);
}

.exp-body {
    padding: 15px;
}

.exp-fresher-banner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #EEF1FA;
    border: 1.5px solid rgba(26,43,95,0.12);
    border-radius: 10px;
    padding: 70px 50px;
}

.exp-fresher-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #1A2B5F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .exp-fresher-icon svg {
        width: 22px;
        height: 22px;
        stroke: #E8702A;
    }

.exp-fresher-title {
    font-family: 'Poppins',sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1A2B5F;
    margin-bottom: 6px;
}

.exp-fresher-sub {
    font-size: 12px;
    color: #5C6480;
    line-height: 1.65;
    margin-bottom: 14px;
}

.exp-fresher-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.exp-fresher-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 11px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #E2E6F0;
    color: #18A87C;
}

    .exp-fresher-pill svg {
        width: 11px;
        height: 11px;
        stroke: #18A87C;
    }

.exp-textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.6;
}

.exp-working-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px;
    background: #fff;
    border: 1.5px solid #E2E6F0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    width: 100%;
}

    .exp-working-row:hover {
        border-color: #e8702a;
        color: #e8702a;
    }

    .exp-working-row.is-checked {
        background: #FDF0E8;
        border-color: #FAD9C4;
    }

.exp-working-left {
    display: flex;
    align-items: center;
    gap: 9px;
}

.exp-working-icon {
    width: 25px;
    height: 25px;
    border-radius: 6px;
    background: #EEF1FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .exp-working-icon svg {
        width: 14px;
        height: 14px;
        stroke: #1A2B5F;
    }

.exp-working-row.is-checked .exp-working-icon {
    background: #FAD9C4;
}

    .exp-working-row.is-checked .exp-working-icon svg {
        stroke: #E8702A;
    }

.exp-working-text {
    font-size: 10px;
    font-weight: 600;
    color: #5C6480;
}

.exp-working-row.is-checked .exp-working-text {
    color: #C95D1A;
}

.exp-working-hint {
    font-size: 7px;
    color: #9AA3BB;
    font-weight: 600;
}

.exp-working-row.is-checked .exp-working-hint {
    color: #E8702A;
    opacity: 0.75;
}

.exp-working-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #E2E6F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}

    .exp-working-check svg {
        width: 10px;
        height: 10px;
        stroke: #E2E6F0;
    }

.exp-working-row.is-checked .exp-working-check {
    background: #E8702A;
    border-color: #E8702A;
}

    .exp-working-row.is-checked .exp-working-check svg {
        stroke: #fff;
    }

.exp-presently-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #E6F7F2;
    border: 1px solid #9FE1CB;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    color: #0F6E56;
    height: 35px;
}

.exp-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #18A87C;
    flex-shrink: 0;
    animation: exp-pulse 1.4s ease-in-out infinite;
}

@keyframes exp-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ============================================================
   Skill Detail
   ============================================================ */
.sk-section {
    margin-bottom: 20px;
}

.sk-count {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 6px;
}

.sk-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.sk-divider-line {
    flex: 1;
    height: 1px;
    background: #EEF0F5;
}

.sk-divider-lbl {
    font-size: 11px;
    font-weight: 600;
    color: #9AA3BB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sk-lang-card {
    border: 1px solid #E2E6F0;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
    background: #fff;
}

.sk-lang-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sk-lang-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1A2B5F;
}

.sk-check-group {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.sk-check-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 20px;
    border: 1.5px solid #E2E6F0;
    font-size: 12px;
    font-weight: 500;
    color: #5C6480;
    cursor: pointer;
    background: #fff;
    user-select: none;
    transition: all 0.15s;
}

    .sk-check-pill.active {
        background: #EEF1FA;
        border-color: #C5CCE8;
        color: #1A2B5F;
    }

.sk-check-dot {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    border: 1.5px solid #DDE1EC;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}

.sk-check-pill.active .sk-check-dot {
    background: #1A2B5F;
    border-color: #1A2B5F;
}

    .sk-check-pill.active .sk-check-dot::after {
        content: '';
        display: block;
        width: 7px;
        height: 4px;
        border-left: 1.5px solid #fff;
        border-bottom: 1.5px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
    }


/* ============================================================
   Review Detail
   ============================================================ */
.rw-score-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #E6F7F2;
    border: 1px solid #9FE1CB;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 14px;
}

.rw-donut-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

    .rw-donut-wrap svg {
        transform: rotate(-90deg);
    }

.rw-donut-bg {
    fill: none;
    stroke: rgba(15,110,86,0.15);
    stroke-width: 7;
}

.rw-donut-fill {
    fill: none;
    stroke: #18A87C;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 188.5;
}

.rw-donut-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins',sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0F6E56;
}

.rw-score-div {
    width: 1px;
    height: 52px;
    background: #9FE1CB;
    flex-shrink: 0;
}

.rw-score-content {
    flex: 1;
}

.rw-score-title {
    font-size: 13px;
    font-weight: 700;
    color: #0F6E56;
    margin-bottom: 3px;
}

.rw-score-sub {
    font-size: 11.5px;
    color: #18A87C;
    opacity: 0.8;
    margin-bottom: 10px;
}

.rw-missing-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rw-missing-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #9FE1CB;
    color: #0F6E56;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

    .rw-missing-chip:hover {
        background: #D1F3E7;
    }

    .rw-missing-chip svg {
        width: 11px;
        height: 11px;
        stroke: #0F6E56;
    }

.rw-card {
    background: #fff;
    border: 1px solid #E2E6F0;
    border-radius: 10px;
}

.rw-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #F7F8FB;
    border-bottom: 1px solid #EEF0F5;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.rw-card-head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rw-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #FDF0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .rw-icon svg {
        width: 15px;
        height: 15px;
        stroke: #E8702A;
    }

.rw-section-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1A2B5F;
}

.rw-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    background: #EEF1FA;
    border: 1px solid #C5CCE8;
    color: #1A2B5F;
    text-decoration: none;
    transition: background 0.15s;
}

    .rw-edit-btn:hover {
        background: #DDE4F5;
        color: #1A2B5F;
    }

    .rw-edit-btn svg {
        width: 11px;
        height: 11px;
        stroke: #1A2B5F;
    }

.rw-card-body {
    padding: 14px 16px;
}

.rw-profile-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #EEF0F5;
}

.rw-name {
    font-size: 13px;
    font-weight: 700;
    color: #1A2B5F;
}

.rw-meta {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 2px;
}

.rw-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #0077B5;
    margin-top: 3px;
    text-decoration: none;
}

.rw-info-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 12px;
}

.rw-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rw-info-full {
    width: 100%;
}

.rw-info-label {
    font-size: 10px;
    font-weight: 600;
    color: #9AA3BB;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rw-info-value {
    font-size: 12px;
    font-weight: 500;
    color: #1E2640;
}

.rw-tag-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 3px;
}

.rw-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    background: #EEF1FA;
    border: 1px solid #C5CCE8;
    color: #1A2B5F;
}

.rw-exp-item {
    display: flex;
    gap: 11px;
    padding: 10px 0;
    border-bottom: 1px solid #EEF0F5;
}

.rw-exp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.rw-edu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.rw-dot-orange {
    background: #E8702A;
}

.rw-dot-gray {
    background: #DDE1EC;
}

.rw-dot-navy {
    background: #1A2B5F;
}

.rw-exp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rw-exp-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1A2B5F;
}

.rw-exp-org {
    font-size: 11.5px;
    color: #5C6480;
    margin-top: 1px;
}

.rw-exp-date {
    font-size: 10.5px;
    color: #9AA3BB;
    margin-top: 2px;
}

.rw-exp-type {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background: #EEF1FA;
    color: #1A2B5F;
}

.rw-exp-current {
    background: #E6F7F2;
    color: #0F6E56;
}

.rw-exp-resp {
    font-size: 11.5px;
    color: #5C6480;
    margin-top: 6px;
    line-height: 1.6;
    border-left: 2px solid #E2E6F0;
    padding-left: 8px;
}

.rw-edu-item {
    display: flex;
    gap: 11px;
    padding: 10px 0;
    border-bottom: 1px solid #EEF0F5;
}

    .rw-edu-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.rw-edu-qual {
    font-size: 12.5px;
    font-weight: 700;
    color: #1A2B5F;
}

.rw-edu-inst {
    font-size: 11.5px;
    color: #5C6480;
    margin-top: 1px;
}

.rw-edu-meta {
    font-size: 10.5px;
    color: #9AA3BB;
    margin-top: 2px;
}

.rw-sub-label {
    font-size: 10px;
    font-weight: 600;
    color: #9AA3BB;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.rw-skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rw-skill-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 11px;
    border-radius: 20px;
    background: #EEF1FA;
    border: 1px solid #C5CCE8;
    color: #1A2B5F;
}

.rw-lang-row {
    display: grid;
    grid-template-columns: 120px 120px auto;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #EEF0F5;
    gap: 10px;
}

    .rw-lang-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.rw-lang-name {
    font-size: 12px;
    font-weight: 600;
    color: #1A2B5F;
    width: 90px;
    flex-shrink: 0;
}

.rw-lang-level {
    font-size: 11px;
    color: #5C6480;
    width: 90px;
    flex-shrink: 0;
}

.rw-lang-pills {
    display: flex;
    gap: 5px;
}

.rw-lang-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

    .rw-lang-pill.on {
        background: #E6F7F2;
        color: #0F6E56;
        border: 1px solid #9FE1CB;
    }

    .rw-lang-pill.off {
        background: #F7F8FB;
        color: #9AA3BB;
        border: 1px solid #E2E6F0;
    }

.rw-resume-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rw-resume-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #EEF1FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .rw-resume-icon svg {
        width: 16px;
        height: 16px;
        stroke: #1A2B5F;
    }

.rw-resume-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #1A2B5F;
}

.rw-resume-date {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 2px;
}

.rw-resume-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: #E6F7F2;
    color: #0F6E56;
    border: 1px solid #9FE1CB;
}

.rw-fresher-banner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #EEF1FA;
    border: 1px solid rgba(26,43,95,0.1);
    border-radius: 10px;
    padding: 18px;
}

.rw-fresher-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #1A2B5F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .rw-fresher-icon svg {
        width: 20px;
        height: 20px;
        stroke: #E8702A;
    }

.rw-fresher-content {
    flex: 1;
}

.rw-fresher-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1A2B5F;
    margin-bottom: 4px;
}

.rw-fresher-sub {
    font-size: 11.5px;
    color: #5C6480;
    line-height: 1.6;
    margin-bottom: 10px;
}

.rw-fresher-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rw-fresher-pill {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #C5CCE8;
    color: #1A2B5F;
}

.rw-avatar-initials {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1A2B5F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins',sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.rw-empty {
    font-size: 12px;
    color: #9AA3BB;
    font-style: italic;
}

.rw-footer {
    background: #fff;
    border: 1px solid #E2E6F0;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rw-complete-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 6px;
    background: #E8702A;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

    .rw-complete-btn:hover {
        background: #C95D1A;
    }

    .rw-complete-btn svg {
        width: 14px;
        height: 14px;
    }

/* ============================================================
   Jobseeker Setting
   ============================================================ */

/* ============================================================
   Settings Pages — Account / Privacy / Notifications
   Prefix: st-
============================================================ */

/* ── Page top ───────────────────────────────────────────── */
.page-top {
    margin-bottom: 10px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A2B5F;
}

.page-sub {
    font-size: 12px;
    color: #9AA3BB;
    margin-bottom: 0px;
}

/* ── Top tab strip ──────────────────────────────────────── */
.st-tabs {
    display: flex;
    background: #fff;
    border: 1px solid #E2E6F0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.st-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: #5C6480;
    cursor: pointer;
    border-right: 1px solid #EEF0F5;
    border-bottom: 3px solid transparent;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

    .st-tab:last-child {
        border-right: none;
    }

    .st-tab.active {
        color: #E8702A;
        border-bottom-color: #E8702A;
        background: #FDF0E8;
    }

    .st-tab svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
    }

/* ── Section cards ──────────────────────────────────────── */
.st-card {
    background: #fff;
    border: 1px solid #E2E6F0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.st-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #F7F8FB;
    border-bottom: 1px solid #EEF0F5;
}

.st-card-head-left {
    display: flex;
    align-items: center;
    gap: 9px;
}

.st-card-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1A2B5F;
}

.st-danger-title {
    color: #E03B3B;
}

.st-card-body {
    padding: 14px 16px;
}

.st-card-desc {
    font-size: 12px;
    color: #5C6480;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Card icons ─────────────────────────────────────────── */
.st-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .st-icon svg {
        width: 14px;
        height: 14px;
        fill: none;
    }

.st-icon-orange {
    background: #FDF0E8;
}

    .st-icon-orange svg {
        stroke: #E8702A;
    }

.st-icon-navy {
    background: #EEF1FA;
}

    .st-icon-navy svg {
        stroke: #1A2B5F;
    }

.st-icon-amber {
    background: #FEF3C7;
}

    .st-icon-amber svg {
        stroke: #D97706;
    }

.st-icon-red {
    background: #FEE8E8;
}

    .st-icon-red svg {
        stroke: #E03B3B;
    }

/* ── Buttons ────────────────────────────────────────────── */
.st-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

    .st-btn svg {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
    }

.st-btn-primary {
    background: #E8702A;
    color: #fff;
}

    .st-btn-primary:hover {
        background: #C95D1A;
    }

.st-btn-danger {
    background: #E03B3B;
    color: #fff;
}

    .st-btn-danger:hover {
        background: #C0392B;
    }

    .st-btn-danger:disabled {
        background: #9AA3BB;
        cursor: not-allowed;
    }

.st-btn-amber-out {
    background: #fff;
    color: #D97706;
    border: 1.5px solid #D97706;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.st-btn-cancel {
    background: #fff;
    color: #5C6480;
    border: 1.5px solid #E2E6F0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.st-btn-submit {
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* ── Danger points ──────────────────────────────────────── */
.st-points {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.st-point {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #5C6480;
}

    .st-point svg {
        width: 12px;
        height: 12px;
        fill: none;
        flex-shrink: 0;
    }

.st-point-bad svg {
    stroke: #E03B3B;
}

.st-point-good {
    color: #18A87C;
}

    .st-point-good svg {
        stroke: #18A87C;
    }

/* ── Form fields ────────────────────────────────────────── */
.st-field {
    margin-bottom: 14px;
    position: relative;
}

    .st-field:last-child {
        margin-bottom: 0;
    }

.st-lbl {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #5C6480;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

    .st-lbl.required::after {
        content: ' *';
        color: #E8702A;
    }

.st-inp {
    width: 100%;
    padding: 8px 11px;
    border: 1.5px solid #E2E6F0;
    border-radius: 6px;
    font-size: 12.5px;
    color: #1E2640;
    font-family: 'Inter', sans-serif;
}

    .st-inp:focus {
        outline: none;
        border-color: #E8702A;
    }

.st-inp-wrap {
    position: relative;
}

    .st-inp-wrap .st-inp {
        padding-right: 40px;
    }

.st-eye-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #9AA3BB;
}

    .st-eye-btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
    }

.st-val {
    font-size: 11px;
    display: block;
    margin-top: 3px;
}

/* ── Password checklist ─────────────────────────────────── */
.st-pw-checklist {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.st-pw-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #9AA3BB;
    transition: color 0.15s;
}

    .st-pw-check svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        stroke: #DDE1EC;
        fill: none;
    }

    .st-pw-check.valid {
        color: #18A87C;
    }

        .st-pw-check.valid svg {
            stroke: #18A87C;
        }

/* ── Modals ─────────────────────────────────────────────── */
.st-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.st-modal-header {
    background: #F7F8FB;
    border-bottom: 1px solid #EEF0F5;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.st-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.st-modal-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #FDF0E8;
}

    .st-modal-icon svg {
        width: 16px;
        height: 16px;
        stroke: #E8702A;
        fill: none;
    }

.st-modal-icon-amber {
    background: #FEF3C7;
}

    .st-modal-icon-amber svg {
        stroke: #D97706;
    }

.st-modal-icon-red {
    background: #FEE8E8;
}

    .st-modal-icon-red svg {
        stroke: #E03B3B;
    }

.st-modal-title {
    font-size: 13px;
    font-weight: 700;
    color: #1A2B5F;
}

.st-modal-sub {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 1px;
}

.st-modal-body {
    padding: 16px;
}

.st-modal-footer {
    padding: 12px 16px;
    border-top: 1px solid #EEF0F5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

/* ── Block company ──────────────────────────────────────── */
.st-domain-row {
    display: flex;
    gap: 8px;
}

.st-sub-lbl {
    font-size: 10px;
    font-weight: 600;
    color: #9AA3BB;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.st-blocked-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.st-blocked-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 11px;
    border-radius: 20px;
    background: #FEE8E8;
    border: 1px solid #FFCCCC;
    color: #E03B3B;
}

    .st-blocked-tag button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        color: #E03B3B;
    }

        .st-blocked-tag button svg {
            width: 11px;
            height: 11px;
            stroke: #E03B3B;
            fill: none;
        }

/* ── Notification toggles ───────────────────────────────── */
.st-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #EEF0F5;
}

    .st-toggle-row:last-child {
        border-bottom: none;
    }

.st-toggle-master {
    background: #F7F8FB;
}

.st-toggle-row.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.st-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.st-notif-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #EEF1FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .st-notif-icon svg {
        width: 14px;
        height: 14px;
        stroke: #1A2B5F;
        fill: none;
    }

.st-toggle-info {
    flex: 1;
}

.st-toggle-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #1A2B5F;
}

.st-toggle-sub {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 1px;
}

.st-toggle {
    width: 38px;
    height: 22px;
    border-radius: 20px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 16px;
}

    .st-toggle.on {
        background: #18A87C;
    }

    .st-toggle.off {
        background: #DDE1EC;
    }

.st-toggle-knob {
    position: absolute;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    transition: left 0.2s;
}

.st-toggle.on .st-toggle-knob {
    left: 19px;
}

.st-toggle.off .st-toggle-knob {
    left: 3px;
}

.st-pw-valid .st-pw-check:not(.valid) {
    opacity: 0.4;
}


/*JobSeeker Login*/
.ls-status-panel {
    border-radius: 10px;
    overflow: hidden;
}

.ls-amber {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
}

.ls-red {
    background: #FEE8E8;
    border: 1px solid #FFCCCC;
}

.ls-sp-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

.ls-sp-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ls-sp-icon svg {
        width: 15px;
        height: 15px;
    }

.ls-sp-icon-amber {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
}

    .ls-sp-icon-amber svg {
        stroke: #D97706;
    }

.ls-sp-icon-red {
    background: #FEE8E8;
    border: 1px solid #FFCCCC;
}

    .ls-sp-icon-red svg {
        stroke: #E03B3B;
    }

.ls-sp-title {
    font-size: 13px;
    font-weight: 700;
}

.ls-amber-text {
    color: #D97706;
}

.ls-red-text {
    color: #E03B3B;
}

.ls-sp-sub {
    font-size: 12px;
    color: #5C6480;
    line-height: 1.6;
    margin-bottom: 14px;
}

.ls-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: 'Inter',sans-serif;
}

.ls-btn-amber {
    background: #D97706;
    color: #fff;
}

.ls-btn-danger {
    background: #E03B3B;
    color: #fff;
}

.ls-btn-outline-danger {
    background: #fff;
    color: #E03B3B;
    border: 1.5px solid #E03B3B;
}

.ls-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ls-back-link {
    font-size: 12px;
    color: #E8702A;
    text-decoration: none;
    font-weight: 600;
}

/*Application Preview*/
.ap-wrap {
    background: #F0F2F8;
    min-height: calc(100vh - 56px);
    padding: 20px 24px;
}
/* ── Header ── */
.ap-header {
    background: linear-gradient(110deg,#0D1B3E,#1A2B5F);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

    .ap-header::before {
        content: '';
        position: absolute;
        right: -20px;
        top: -20px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(232,112,42,0.08);
        pointer-events: none;
    }

.ap-logo {
    width: 52px;
    height: 52px;
    border-radius: 9px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}

.ap-logo-ph {
    width: 52px;
    height: 52px;
    border-radius: 9px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ap-job-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ap-job-title {
    font-family: 'Poppins',sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.ap-job-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ap-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.6);
}

    .ap-meta-item svg {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
        flex-shrink: 0;
    }

.ap-notice {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232,112,42,0.15);
    border: 1px solid rgba(232,112,42,0.3);
    border-radius: 6px;
    padding: 6px 11px;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
}

.ap-notice svg {
    width: 12px;
    height: 12px;
    stroke: #E8702A;
    fill: none;
    flex-shrink: 0;
}

.ap-notice strong {
    color: #E8702A;
}

/* ── Profile strip ── */
.ap-strip {
    background: #fff;
    border: 1px solid #E2E6F0;
    border-radius: 10px;
    padding: 13px 16px;
    margin-bottom: 12px;
}

.ap-strip-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ap-strip-title {
    font-size: 12px;
    font-weight: 700;
    color: #1A2B5F;
}

.ap-strip-pct {
    font-size: 13px;
    font-weight: 700;
    color: #E8702A;
}

.ap-strip-bar {
    height: 5px;
    background: #EEF0F5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ap-strip-fill {
    height: 100%;
    background: linear-gradient(90deg,#18A87C,#E8702A);
    border-radius: 3px;
}

.ap-strip-nudges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ap-nudge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
}

    .ap-nudge:hover {
        opacity: 0.85;
        text-decoration: none;
    }

.ap-nudge-orange {
    background: #FDF0E8;
    color: #E8702A;
    border: 1px solid #F5C6A0;
}

    .ap-nudge-orange svg {
        width: 11px;
        height: 11px;
        stroke: #E8702A;
        fill: none;
    }

.ap-nudge-blue {
    background: #EEF1FA;
    color: #1A2B5F;
    border: 1px solid #C5CCE8;
}

.ap-nudge-blue svg {
    width: 11px;
    height: 11px;
    stroke: #1A2B5F;
    fill: none;
}

/* ── Layout — left stretches to full height ── */
.ap-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 14px;
    align-items: stretch;
}

.ap-left-col {
    display: flex;
    flex-direction: column;
}

.ap-left-col .ap-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ap-left-col .ap-card .ap-card-body {
    flex: 1;
}

/* ── Personal ── */
.ap-person-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #EEF0F5;
}

.ap-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E2E6F0;
    flex-shrink: 0;
}

.ap-avatar-ph {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EEF1FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #1A2B5F;
    flex-shrink: 0;
}

.ap-pname {
    font-size: 13px;
    font-weight: 700;
    color: #1A2B5F;
}

.ap-psub {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 1px;
}

.ap-info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 9px;
}

    .ap-info-row:last-child {
        margin-bottom: 0;
    }

.ap-ii {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: #EEF1FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .ap-ii svg {
        width: 10px;
        height: 10px;
        stroke: #1A2B5F;
        fill: none;
    }

.ap-il {
    font-size: 10px;
    font-weight: 700;
    color: #9AA3BB;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ap-iv {
    font-size: 12px;
    color: #1E2640;
    margin-top: 1px;
}

.ap-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 3px;
}

.ap-tag {
    font-size: 9.5px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #EEF1FA;
    color: #1A2B5F;
    font-weight: 500;
}

.ap-tag-g {
    background: #E6F7F2;
    color: #0F6E56;
}

/* ── Fresher ── */
.ap-fresher {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #E6F7F2;
    border: 1px solid #9FE1CB;
    border-radius: 8px;
    padding: 12px 14px;
}

    .ap-fresher svg {
        width: 18px;
        height: 18px;
        stroke: #18A87C;
        fill: none;
        flex-shrink: 0;
    }

.ap-ft {
    font-size: 12px;
    font-weight: 600;
    color: #0F6E56;
}

.ap-fs {
    font-size: 11px;
    color: #18A87C;
    margin-top: 2px;
}
/* ── Resume ── */
.ap-rf {
    display: flex;
    align-items:start;
    gap: 10px;
}

.ap-ri {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #FEE8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ap-ri svg {
        width: 16px;
        height: 16px;
        stroke: #E03B3B;
        fill: none;
    }

.ap-ri-doc {
    background: #EEF1FA;
}

    .ap-ri-doc svg {
        stroke: #1A2B5F;
    }

.ap-rn {
    font-size: 12.5px;
    font-weight: 600;
    color: #1E2640;
}

.ap-rd {
    font-size: 11px;
    color: #9AA3BB;
    margin-top: 2px;
}

.ap-rp {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #E8702A;
    margin-top: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .ap-rp:hover {
        text-decoration: underline;
    }

    .ap-rp svg {
        width: 11px;
        height: 11px;
        stroke: currentColor;
        fill: none;
    }

.ap-divider {
    height: 1px;
    background: #EEF0F5;
    margin: 14px 0;
}
/* ── Screening questions ── */
.ap-sq-wrap {
    margin-bottom: 16px;
    position:relative;
}

.ap-sq-wrap:last-child {
    margin-bottom: 0;
}

.ap-sq-label {
    font-size: 12px;
    font-weight: 600;
    color: #1A2B5F;
    margin-bottom: 5px;
    display: block;
}

    .ap-sq-label.required::after {
        content: ' *';
        color: #E8702A;
    }

.ap-sq-input {
    width: 100%;
    padding: 8px 11px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12px;
    color: #1E2640;
    background: #F7F8FB;
    font-family: inherit;
    transition: border 0.15s;
}

    .ap-sq-input:focus {
        outline: none;
        border-color: #E8702A;
        background: #fff;
    }

.ap-sq-select {
    width: 100%;
    padding: 8px 11px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12px;
    color: #1E2640;
    background: #F7F8FB;
    font-family: inherit;
}

    .ap-sq-select:focus {
        outline: none;
        border-color: #E8702A;
    }

.ap-radio-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}

    .ap-radio-item input {
        accent-color: #E8702A;
    }

    .ap-radio-item label {
        font-size: 12px;
        color: #1E2640;
        cursor: pointer;
    }
/* ── Language table ── */
.ap-lt {
    width: 100%;
    font-size: 11.5px;
    border-collapse: collapse;
    margin-top: 8px;
}

    .ap-lt th {
        font-size: 10px;
        font-weight: 700;
        color: #9AA3BB;
        text-transform: uppercase;
        padding: 5px 8px;
        border-bottom: 2px solid #EEF0F5;
        text-align: left;
    }

    .ap-lt td {
        padding: 6px 8px;
        border-bottom: 1px solid #EEF0F5;
        color: #1E2640;
    }

    .ap-lt tr:last-child td {
        border-bottom: none;
    }

.ap-ck {
    color: #18A87C;
    font-weight: 700;
}

.ap-cx {
    color: #E03B3B;
}

.ap-form-lbl {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #1A2B5F;
    margin-bottom: 5px;
}


.ap-cover-area {
    width: 100%;
    min-height: 110px;
    padding: 9px 12px;
    border: 1.5px solid #E2E6F0;
    border-radius: 7px;
    font-size: 12.5px;
    color: #1E2640;
    background: #F7F8FB;
    font-family: inherit;
    resize: vertical;
}

.ap-cover-area:focus {
    outline: none;
    border-color: #E8702A;
    background: #fff;
}

.ap-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F7F8FB;
    border: 1.5px dashed #C5CCE8;
    border-radius: 8px;
    padding: 14px;
}
.ap-empty svg {
    width: 18px;
    height: 18px;
    stroke: #9AA3BB;
    fill: none;
    flex-shrink: 0;
}
.ap-empty-text {
    font-size: 12px;
    color: #9AA3BB;
}
.ap-empty-text a {
    color: #E8702A;
    font-weight: 600;
    text-decoration: none;
}

.ap-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border-top: 1px solid #EEF0F5;
    background: #F7F8FB;
}

.ap-sub-btn {
    padding: 9px 24px;
    background: #E8702A;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

    .ap-sub-btn:hover {
        background: #C95D1A;
    }

.ap-can-btn {
    padding: 8px 16px;
    background: #fff;
    color: #E03B3B;
    border: 1.5px solid #E03B3B;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

    .ap-can-btn:hover {
        background: #FEE8E8;
        color: #C0392B;
        text-decoration: none;
    }

@media (max-width:900px) {
    .ap-layout {
        grid-template-columns: 1fr;
    }

    .ap-wrap {
        padding: 12px;
    }
}
