/* JobPosting247 visual refresh
   Layout only: PHP, sessions, form names and database-backed loops remain unchanged. */
:root {
    --ink: #000;
    --ink-soft: #000;
    --navy: #0957a7;
    --blue: #1769aa;
    --teal: #2aa39a;
    --coral: #e96a58;
    --cream: #f5f8fc;
    --line: #dbe5ef;
    --white: #fff;
    --shadow: 0 18px 48px rgba(20, 52, 87, .13);
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}
body *, body *::before, body *::after { box-sizing: border-box; }
#container { width: 100%; min-height: 100vh; }
a { color: inherit; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    position: relative;
    z-index: 5;
    float: none;
    width: 100%;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(219, 229, 239, .8);
}
.header-shell {
    width: min(1180px, calc(100% - 48px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 38px;
    position: relative;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex: 0 0 auto;
}
.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
     
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: 0 7px 16px rgba(23, 105, 170, .2);
}
.brand-mark span { color: #c9f0e6; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-name, .footer-brand-name {
    color: var(--navy);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -.7px;
}
.brand-name span, .footer-brand-name span { color: var(--coral); }
.brand-tagline {
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: capitalize;
}
.primary-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.primary-navigation a {
    padding: 10px 15px;
    border-radius: 9px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}
.primary-navigation a:hover,
.primary-navigation a:focus-visible { color: var(--blue); background: #eef6fb; }
.primary-navigation a.active { color: var(--blue); background: #edf6fb; }
.menu-toggle { display: none; }
.account-status {
    position: absolute;
    right: 0;
    top: 7px;
    color: var(--ink-soft);
    font-size: 11px;
}
.account-status a { color: var(--blue); font-weight: 700; text-decoration: none; }
.account-status span { margin: 0 8px; color: #9aabba; }

/* Hero and search */
.home-main { min-height: 620px; }
.hero-section {
    position: relative;
    isolation: isolate;
    padding: 82px 0 112px;
    background:
        radial-gradient(circle at 10% 15%, rgba(42, 163, 154, .14), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(233, 106, 88, .11), transparent 24%),
        linear-gradient(135deg, #f5f9fd 0%, #eef5fa 100%);
    overflow: hidden;
}
.hero-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -105px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(23, 105, 170, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(23, 105, 170, .025), 0 0 0 78px rgba(23, 105, 170, .02);
}
.hero-shell {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}
.hero-copy { max-width: 840px; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 21px;
    color: var(--blue);
    font-size: 42px;
    font-weight: 800;
     
    text-transform: capitalize;
	font-family:verdana;
}
.eyebrow-dot {
display:none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(42, 163, 154, .13);
}
.hero-copy h1 {
    max-width: 700px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 6vw, 42px);
    font-weight: 800;
    letter-spacing: -3.8px;
    line-height: .99;
}
.hero-copy h1 em {
    color: var(--coral);
    font-style: normal;
}
.hero-description {
   
    margin: 23px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.65;
}
.search-card {
    max-width: 1080px;
    margin: 47px auto 0;
    padding: 27px 30px 21px;
    background: var(--white);
    border: 1px solid rgba(219, 229, 239, .9);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.search-card-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}
.search-kicker {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: capitalize;
}
.search-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    letter-spacing: -.6px;
}
.job-total {
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--ink-soft);
    background: #f4f8fb;
    font-size: 12px;
    white-space: nowrap;
}
.job-total strong { color: var(--blue); font-size: 14px; }
.job-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
}
.field-group label {
    display: block;
    margin: 0 0 7px 2px;
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 800;
}
.field-control {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfdff;
    transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field-control:focus-within {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.field-icon {
    flex: 0 0 38px;
    color: var(--blue);
    font-size: 25px;
    line-height: 1;
    text-align: center;
}
.field-control input, .field-control select {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 13px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
}
.field-control input::placeholder { color: #8b9aaa; }
.field-control select {
    padding-right: 30px;
    appearance: auto;
    cursor: pointer;
}
.search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 52px;
    min-width: 154px;
    padding: 0 19px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--navy);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.search-submit:hover, .search-submit:focus-visible {
    background: var(--blue);
    box-shadow: 0 8px 18px rgba(18, 51, 91, .2);
    transform: translateY(-1px);
}
.button-arrow { color: #a9dcd2; font-size: 21px; line-height: 1; }
.search-note {
    margin: 15px 0 0;
    color: #7b8b9b;
    font-size: 11px;
}
.search-note span { margin-right: 5px; color: var(--teal); font-weight: 800; }

/* Benefits strip */
.value-strip {
    background: var(--navy);
    color: #fff;
}
.value-strip-inner {
    width: min(1080px, calc(100% - 48px));
    min-height: 105px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 51px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}
.value-item:first-child { padding-left: 0; }
.value-item:last-child { border-right: 0; }
.value-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(169, 220, 210, .32);
    border-radius: 11px;
    color: #a9dcd2;
    font-size: 22px;
	padding-left:11px;
}
.value-item strong, .value-item span { display: block; }
.value-item strong { margin-bottom: 2px; font-size: 13px; }
.value-item div > span { color: #aabace; font-size: 11px; }

/* Footer */
.site-footer {
    float: none;
    width: 100%;
    padding: 0;
    color: #b4c1d0;
    background: #0d2037;
}
.footer-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 58px 0 52px;
    display: grid;
    grid-template-columns: 1fr 2.3fr;
    gap: 70px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 15px; box-shadow: none; }
.footer-brand-name { color: #fff; font-size: 18px; }
.footer-intro p {
    max-width: 240px;
    margin: 1px 0 0;
    color: #8ea2b8;
    font-size: 13px;
    line-height: 1.7;
	padding-left:10%;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.footer-column h2 {
    margin: 2px 0 17px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: capitalize;
}
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { margin: 0 0 10px; }
.footer-column a {
    color: #9db0c4;
    font-size: 13px;
    text-decoration: none;
    transition: color .2s ease;
}
.footer-column a:hover, .footer-column a:focus-visible { color: #fff; }
.footer-social a { display: flex; justify-content: space-between; gap: 10px; }
.footer-social a span { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 54px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #71869e;
    font-size: 11px;
}

@media (max-width: 800px) {
    .header-shell { min-height: 76px; gap: 18px; }
    .account-status { top: auto; bottom: -25px; right: 0; z-index: 2; }
    .primary-navigation { gap: 0; }
    .primary-navigation a { padding: 9px 10px; font-size: 13px; }
    .hero-section { padding-top: 66px; }
    .job-search-form { grid-template-columns: 1fr 1fr; }
    .search-submit { width: 100%; grid-column: span 2; }
    .footer-shell { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 600px) {
    .header-shell, .hero-shell, .value-strip-inner, .footer-shell, .footer-bottom-inner {
        width: min(100% - 32px, 520px);
    }
    .site-header { min-height: 76px; }
    .header-shell { align-items: center; }
    .brand-name { font-size: 18px; }
    .brand-tagline { font-size: 9px; }
    .menu-toggle {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        margin-left: auto;
        border: 1px solid var(--line);
        border-radius: 9px;
        color: var(--navy);
        background: #fff;
        cursor: pointer;
        font-size: 20px;
    }
    .primary-navigation {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 14px 28px rgba(20, 52, 87, .13);
    }
    .primary-navigation.is-open { display: grid; }
    .primary-navigation a { padding: 12px; }
    .account-status { display: none; }
    .hero-section { padding: 53px 0 72px; }
    .hero-copy h1 { font-size: clamp(42px, 13vw, 60px); letter-spacing: -2.8px; }
    .hero-description { margin-top: 18px; font-size: 16px; }
    .search-card { margin-top: 33px; padding: 22px 17px 18px; border-radius: 15px; }
    .search-card-heading { display: block; }
    .job-total { display: inline-block; margin-top: 13px; }
    .job-search-form { display: block; }
    .field-group { margin-bottom: 13px; }
    .search-submit { margin-top: 3px; }
    .value-strip-inner { display: block; padding: 12px 0; }
    .value-item, .value-item:first-child {
        min-height: 63px;
        padding: 9px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }
    .value-item:last-child { border-bottom: 0; }
    .footer-shell { padding: 42px 0 35px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
    .footer-bottom-inner { min-height: 70px; display: block; padding: 17px 0; }
    .footer-bottom-inner span { display: block; }
    .footer-bottom-inner span + span { margin-top: 5px; }
}

@media (max-width: 360px) {
    .brand-mark { width: 34px; height: 34px; }
    .brand-name { font-size: 16px; }
    .brand-tagline { letter-spacing: .08em; }
    .hero-copy h1 { font-size: 40px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
}

/* Job detail page */
.job-page {
    min-height: 720px;
    padding: 24px 0 92px;
    background: var(--cream);
}
.job-page-shell {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}
.job-page .job-search-card {
    max-width: none;
    margin: 0 0 27px;
    padding: 22px 25px 18px;
}
.job-page .search-card-heading { margin-bottom: 15px; }
.job-page .search-card h2 { font-size: 19px; }
.job-search-hint {
    color: #8090a1;
    font-size: 12px;
}
.job-page .job-search-form {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) auto;
}
.job-page .field-control, .job-page .search-submit { height: 48px; }
.job-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 17px 3px;
    color: #7c8d9d;
    font-size: 12px;
}
.job-breadcrumb a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}
.job-overview-card, .job-description-card, .job-side-card {
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 11px 30px rgba(20, 52, 87, .07);
}
.job-overview-card { overflow: hidden; }
.job-overview-top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    padding: 35px 38px 31px;
    background:
        radial-gradient(circle at 100% 0%, rgba(42, 163, 154, .12), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f7fbfd 100%);
}
.job-heading { min-width: 0; }
.job-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 15px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: capitalize;
}
.job-heading h1 {
    max-width: 650px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 47px);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.06;
}
.job-company {
    margin: 14px 0 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}
.job-location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 9px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}
.job-location span { color: var(--coral); font-size: 20px; line-height: 1; }
.job-actions {
    display: flex;
    flex: 0 0 188px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding-top: 16px;
}
.job-tools {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
}
.job-tool-link {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}
.job-tool-link:hover, .job-tool-link:focus-visible { color: var(--coral); }
.job-tool-link span { margin-right: 4px; font-size: 15px; }
.job-apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 50px;
    padding: 0 17px;
    border-radius: 10px;
    color: #fff !important;
    background: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.job-apply-button:hover, .job-apply-button:focus-visible {
    background: var(--blue);
    box-shadow: 0 8px 18px rgba(18, 51, 91, .2);
    transform: translateY(-1px);
}
.job-apply-button span:last-child { color: #a9dcd2; font-size: 20px; line-height: 1; }
.job-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: #fbfdff;
}
.job-stat {
    min-width: 0;
    padding: 18px 21px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.job-stat:nth-child(4n) { border-right: 0; }
.job-stat-label {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: title;
}
.job-stat strong, .job-stat a {
    display: block;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}
.job-stat a { color: var(--blue); text-decoration: none; }
.job-stat a:hover { color: var(--coral); }
.job-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(250px, .75fr);
    align-items: start;
    gap: 22px;
    margin-top: 22px;
}
.job-description-card { padding: 31px 35px 37px; }
.section-kicker {
    margin: 0 0 7px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: capitalize;
}
.section-heading h2, .job-side-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -.8px;
}
.viewjob-description {
    margin-top: 25px;
    color: #465b70;
    font-size: 15px;
    line-height: 1.8;
}
.viewjob-description p { margin: 0; }
.viewjob-description p + p { margin-top: 17px; }
.viewjob-description h2, .viewjob-description h3, .viewjob-description h4 {
    margin: 24px 0 7px;
    color: var(--navy);
    line-height: 1.3;
}
.viewjob-description ul, .viewjob-description ol {
    margin: 11px 0;
    padding-left: 21px;
}
.viewjob-description li { margin-bottom: 7px; }
.job-side-card {
    position: sticky;
    top: 20px;
    padding: 28px;
    color: #dce8f2;
    background: var(--navy);
}
.side-card-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    margin-bottom: 23px;
    border: 1px solid rgba(169, 220, 210, .3);
    border-radius: 11px;
    color: #a9dcd2;
    font-size: 22px;
}
.job-side-card .section-kicker { color: #a9dcd2; }
.job-side-card h2 { color: #fff; font-size: 22px; line-height: 1.15; }
.job-side-card > p:not(.section-kicker) {
    margin: 15px 0 24px;
    color: #aabace;
    font-size: 13px;
    line-height: 1.65;
}
.job-side-card .job-apply-button { width: 100%; color: var(--navy) !important; background: #a9dcd2; }
.job-side-card .job-apply-button:hover, .job-side-card .job-apply-button:focus-visible { background: #d2f2eb; }
.job-side-card .job-apply-button span:last-child { color: var(--navy); }

@media (max-width: 800px) {
    .job-overview-top { gap: 22px; padding: 29px 27px 27px; }
    .job-actions { flex-basis: 160px; }
    .job-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .job-stat:nth-child(4n) { border-right: 1px solid var(--line); }
    .job-stat:nth-child(2n) { border-right: 0; }
    .job-content-layout { grid-template-columns: minmax(0, 1fr) 280px; }
}

@media (max-width: 600px) {
    .job-page { padding: 16px 0 60px; }
    .job-page-shell { width: min(100% - 32px, 520px); }
    .job-page .job-search-card { padding: 20px 17px 17px; }
    .job-page .job-search-form { display: block; }
    .job-page .field-group { margin-bottom: 13px; }
    .job-page .search-submit { width: 100%; margin-top: 3px; }
    .job-search-hint { display: block; margin-top: 12px; }
    .job-breadcrumb { margin-top: 5px; }
    .job-overview-top { display: block; padding: 25px 21px 22px; }
    .job-heading h1 { font-size: 33px; letter-spacing: -1.5px; }
    .job-company { font-size: 16px; }
    .job-actions { padding-top: 24px; }
    .job-tools { justify-content: flex-start; }
    .job-stats-grid { grid-template-columns: 1fr 1fr; }
    .job-stat { padding: 15px 14px; }
    .job-content-layout { display: flex; flex-direction: column; margin-top: 16px; }
    .job-description-card { padding: 25px 20px 28px; }
    .job-side-card { position: static; width: 100%; padding: 24px 20px; }
}

/* Search results / employer listings page */
.results-page {
    float: none !important;
    width: 100% !important;
    min-height: 720px;
    margin: 0 !important;
    padding: 25px max(24px, calc((100% - 1080px) / 2)) 92px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    grid-template-areas:
        "list side"
        "nav nav";
    align-items: start;
    gap: 22px;
    background: var(--cream);
}
.results-shell {
    grid-area: list;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}
.results-page .DesktopHeader-headerSearch {
    margin: 0 0 20px;
    padding: 23px 25px 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 11px 30px rgba(20, 52, 87, .07);
}
.results-page .results-search-form {
    position: relative;
    width: 100% !important;
    margin: 0 !important;
    padding-top: 21px;
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    float: none !important;
}
.results-search-form > label {
    
    top: 0;
    z-index: 1;
    margin: 0 !important;
    color: var(--ink-soft) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
	padding-left:2px;
}
.results-search-form > label:first-child { left: 2px; }
.results-search-form > label:nth-child(2) { left: calc(54% + 8px); }
.results-search-form > div:first-of-type { grid-column: 1; }
.results-search-form > div:nth-of-type(2) { grid-column: 2; }
.results-search-form > div {
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    float: none !important;
}
.results-search-form > div:first-of-type,
.results-search-form > div:nth-of-type(2) {
    height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfdff;
}
.results-search-form > div:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.results-search-form input, .results-search-form select {
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    padding: 0 13px !important;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    color: var(--ink);
    font: inherit;
    font-size: 13px !important;
}
.results-search-form input::placeholder { color: #8b9aaa; }
.results-search-form select { cursor: pointer; }
.results-search-form button {
    grid-column: 3;
    height: 48px !important;
    min-width: 140px;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 10px !important;
    color: #fff !important;
    background: var(--navy) !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}
.results-search-form button:hover, .results-search-form button:focus-visible { background: var(--blue) !important; }
.results-summary {
	width:100%;
    min-height: 73px;
    margin: 0 0 14px !important;
    padding: 15px 19px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(42, 163, 154, .22);
    border-radius: 13px;
    color: #dce8f2;
    background: var(--navy) !important;
}
.results-summary > div { display: flex; align-items: baseline; gap: 9px; }
.results-summary strong { color: #fff; font-size: 26px; line-height: 1; }
.results-summary span {
    color: #a9dcd2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: capitalize;
}
.result-card {
    position: relative;
    min-height: 142px;
    margin: 0 0 12px;
    padding: 23px 53px 20px 23px;
    display: block;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white) !important;
    box-shadow: 0 7px 18px rgba(20, 52, 87, .045);
    transition: border .2s ease, box-shadow .2s ease, transform .2s ease;
}
.result-card:hover {
    border-color: rgba(23, 105, 170, .45);
    box-shadow: 0 13px 27px rgba(20, 52, 87, .1);
    transform: translateY(-2px);
}
.result-card-body { min-width: 0; }
.result-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}
.result-card .SerpJob-title {
    min-width: 0;
    margin: 0 !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}
.result-card .SerpJob-titleLink {
    color: var(--navy) !important;
    text-decoration: none !important;
}
.result-card .SerpJob-titleLink:hover { color: var(--blue) !important; }
.result-card-openings {
    flex: 0 0 auto;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--teal);
    background: #edf8f6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: capitalize;
}
.result-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 14px;
}
.result-card-meta .SerpJob-property {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    color: var(--ink-soft) !important;
    font-size: 13px !important;
}
.result-card-meta .SerpJob-property span:first-child { color: var(--coral); font-size: 11px; }
.result-card-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 17px;
    color: #8999a9;
    font-size: 11px;
}
.result-card-dates b {
    margin-right: 4px;
    color: var(--blue);
    font-weight: 800;
}
.result-card-arrow {
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 25px;
}
.results-page > .bannerLST {
    grid-area: side;
    width: auto !important;
    min-width: 0;
    float: none !important;
    padding: 0 !important;
}
.results-page .bannerLST::before {
    content: "Featured";
    display: block;
    margin: 3px 0 13px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: capitalize;
}
.results-page .bannerLST .advertise {
    overflow: hidden;
    margin-left: 0 !important;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    color: var(--ink-soft);
}
.results-page .bannerLST img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    object-fit: cover;
}
.results-page .Pagination {
    grid-area: nav;
    width: auto !important;
    padding: 11px 0 0 !important;
    margin: 0 !important;
    text-align: center;
}
.results-page .Pagination .pagination {
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.results-page .pagination a, .results-page .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin: 0 !important;
    padding: 0 9px !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px;
    color: var(--blue) !important;
    background: var(--white) !important;
    font-size: 12px !important;
    text-decoration: none;
}
.results-page .pagination a:hover, .results-page .pagination span.current {
    border-color: var(--blue) !important;
    color: #fff !important;
    background: var(--blue) !important;
}
.no-results {
    padding: 35px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink-soft);
    background: var(--white);
    text-align: center;
}

@media (max-width: 800px) {
    .results-page {
        display: block;
        padding: 20px 24px 65px;
    }
    .results-page > .bannerLST {
        margin-top: 30px;
    }
    .results-page .Pagination { margin-top: 22px !important; }
}

@media (max-width: 600px) {
    .results-page { padding: 16px 16px 55px; }
    .results-page .DesktopHeader-headerSearch { padding: 20px 17px 17px; }
    .results-page .results-search-form {
        display: block !important;
        padding-top: 0;
    }
    .results-search-form > label {
        position: static;
        display: block;
        margin: 0 0 6px 2px !important;
    }
    .results-search-form > label:nth-child(2) { margin-top: 13px !important; }
    .results-search-form > div:first-of-type,
    .results-search-form > div:nth-of-type(2) {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    .results-search-form button {
        width: 100%;
        margin-top: 13px !important;
    }
    .results-summary { min-height: 65px; }
    .result-card { padding: 19px 42px 18px 17px; }
    .result-card-heading { display: block; }
    .result-card-openings { display: inline-block; margin-top: 10px; }
    .result-card .SerpJob-title { font-size: 17px !important; }
    .result-card-meta { gap: 7px 13px; margin-top: 13px; }
    .result-card-dates { display: block; margin-top: 14px; }
    .result-card-dates span { display: block; margin-top: 4px; }
    .result-card-arrow { right: 15px; }
}

/* Alternate results-page wrapper used by keyword landing pages */
.results-page-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    grid-template-areas:
        "search search"
        "summary summary"
        "list side"
        "nav nav";
    align-items: start;
    gap: 0 22px;
}
.results-page-shell > .results-search-card {
    grid-area: search;
    margin-bottom: 20px;
}
.results-page-shell > .results-summary {
    grid-area: summary;
}
.results-list-area {
    grid-area: list;
    min-width: 0;
}
.results-inline-ad {
    grid-area: side;
    min-width: 0;
    overflow: hidden;
    margin-top: 2px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}
.results-inline-ad::before {
    content: "Featured";
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: capitalize;
}
.results-inline-ad .adsbygoogle {
    display: block !important;
    width: 100% !important;
    height: 100px !important;
}
.results-page-shell > .Pagination {
    grid-area: nav;
}

@media (max-width: 800px) {
    .results-page-shell {
        display: block;
        width: 100%;
    }
    .results-inline-ad { margin-top: 28px; }
    .results-page-shell > .Pagination { margin-top: 22px !important; }
}

/* Employer and job-seeker authentication pages */
.auth-page {
    min-height: 620px;
    padding: 76px 24px 88px;
    background:
        radial-gradient(circle at 10% 8%, rgba(42, 163, 154, .12), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(233, 106, 88, .1), transparent 25%),
        var(--cream);
}
.auth-shell {
    width: min(1060px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(380px, .72fr);
    gap: 72px;

}
.auth-intro {
    max-width: 510px;
}
.auth-intro h1 {
 
    max-width: 560px;
    margin: 14px 0 20px 15px;
    color: var(--navy);
    font-size: clamp(32px, 5vw, 30px); 
    line-height: 1.04;
    letter-spacing: -2.4px;
}
.auth-intro h1 em {
	font-size:36px;
    color: var(--coral);
    font-family: verdana;
    font-weight: 500;
}
.auth-intro > p:not(.eyebrow) {
    max-width: 465px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
	margin-left:20px;
}
.auth-intro-points {
    display: grid;
    gap: 12px;
    margin-top: 32px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
	margin-left:15px;
}
.auth-intro-points span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-intro-points b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--teal);
    background: #e2f5f1;
    font-size: 13px;
}
.auth-card {
    padding: 38px;
    border: 1px solid rgba(219, 229, 239, .95);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.auth-card-heading h2 {
    margin: 6px 0 8px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -.8px;
}
.auth-card-heading > p:last-child {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}
.section-kicker {
    margin: 0;
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: capitalize;
}
.auth-message {
    margin-top: 22px;
    padding: 12px 14px;
    border: 1px solid #f0c1bb;
    border-radius: 10px;
    color: #a63e33;
    background: #fff3f1;
    font-size: 13px;
}
.auth-message-success {
    border-color: #bfe4da;
    color: #187467;
    background: #effaf7;
}
.auth-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}
.auth-field {
    display: grid;
    gap: 7px;
}
.auth-field label {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}
.auth-field input {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
    color: var(--ink);
    background: #fbfdff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.auth-field input::placeholder { color: #91a0b2; }
.auth-field input:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.auth-submit {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px 0 20px;
    border: 0;
    border-radius: 10px;
    color: var(--white);
    background: var(--navy);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}
.auth-submit:hover,
.auth-submit:focus-visible {
    background: var(--blue);
    transform: translateY(-1px);
}
.auth-submit span:last-child { color: #a9eee1; font-size: 22px; }
.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 23px;
    font-size: 13px;
}
.auth-links a {
    color: var(--blue);
    text-decoration: none;
}
.auth-links a:hover,
.auth-links a:focus-visible { text-decoration: underline; }
.auth-links a:last-child { color: var(--ink-soft); }
.auth-links-stacked {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

@media (max-width: 800px) {
    .auth-page { padding: 52px 20px 70px; }
    .auth-shell {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .auth-intro { max-width: 650px; }
    .auth-intro h1 { font-size: clamp(38px, 9vw, 54px); }
}
@media (max-width: 480px) {
    .auth-card { padding: 26px 20px; border-radius: 16px; }
    .auth-card-heading h2 { font-size: 26px; }
    .auth-links { align-items: flex-start; flex-direction: column; }
}

.auth-shell-wide {
    display: block;
    width: min(1080px, 100%);
}
.signup-intro {
    max-width: 760px;
    margin-bottom: 34px;
}
.signup-intro h1 {
    max-width: 700px;
    margin-bottom: 14px;
}
.signup-form {
    display: grid;
    gap: 22px;
}
.signup-card {
    padding: 32px;
    border: 1px solid rgba(219, 229, 239, .95);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(20, 52, 87, .08);
}
.signup-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.signup-card-header h2 {
    margin: 5px 0 0;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -.5px;
}
.required-note {
    padding: 7px 10px;
    border-radius: 7px;
    color: var(--ink-soft);
    background: #f4f8fc;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: capitalize;
    white-space: nowrap;
}
.signup-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 18px;
    padding-top: 25px;
}
.signup-field {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
}
.signup-field-wide { grid-column: span 2; }
.signup-field label,
.captcha-block > label {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}
.signup-field input,
.signup-field select,
.captcha-block input {
    width: 100%;
    min-height: 47px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    outline: none;
    color: var(--ink);
    background: #fbfdff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.signup-field input[type="file"] {
    padding: 10px;
    color: var(--ink-soft);
    font-size: 13px;
}
.signup-field input:focus,
.signup-field select:focus,
.captcha-block input:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.signup-field select {
    appearance: auto;
}
.star { color: var(--coral); }
.field-error {
    min-height: 15px;
    color: red;
    font-size: 13px;
    line-height: 1.35;
}
.signup-verification {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
    gap: 34px;
    padding-top: 25px;
}
.captcha-block {
    display: grid;
    align-content: start;
    gap: 9px;
}
.captcha-display {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.captcha-display img {
    display: block;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 7px;
}
.captcha-display a {
    color: var(--blue);
    font-size: 12px;
    text-decoration: none;
}
.captcha-display a:hover,
.captcha-display a:focus-visible { text-decoration: underline; }
.captcha-block > label[for="letters_code"] {
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 12px;
}
.captcha-block input { max-width: 280px; }
.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid #cce9e4;
    border-radius: 12px;
    color: var(--navy);
    background: #f1fbf8;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
    cursor: pointer;
}
.terms-check input {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin: 1px 0 0;
    accent-color: var(--teal);
}
.signup-terms {
    margin-top: 26px;
    padding: 18px 20px;
    border-left: 3px solid var(--coral);
    border-radius: 0 10px 10px 0;
    color: var(--ink-soft);
    background: #fff8f6;
    font-size: 12px;
    line-height: 1.6;
}
.signup-terms p { margin: 0 0 6px; }
.signup-terms p:last-child { margin-bottom: 0; }
.signup-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}
.signup-submit-row input[type="image"] {
    width: 220px !important;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(233, 106, 88, .2);
    transition: transform .2s ease, filter .2s ease;
}
.signup-submit-row input[type="image"]:hover,
.signup-submit-row input[type="image"]:focus-visible {
    filter: brightness(.96);
    transform: translateY(-1px);
}
.seeker-category-select {
    min-height: 132px !important;
    padding: 8px 10px !important;
}
.seeker-category-select option { padding: 6px 4px; }
.seeker-preferences {
    display: grid;
    align-content: start;
    gap: 12px;
}
.seeker-register-button {
    width: min(240px, 100%);
    flex: 0 0 auto;
}
.seeker-signup-page > .auth-shell > .auth-message {
    max-width: 720px;
    margin: 0 0 22px;
}

@media (max-width: 800px) {
    .signup-card { padding: 25px 21px; }
    .signup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .signup-field-wide { grid-column: span 2; }
    .signup-verification { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 520px) {
    .signup-card-header { flex-direction: column; gap: 12px; }
    .signup-grid { grid-template-columns: 1fr; }
    .signup-field-wide { grid-column: auto; }
    .signup-submit-row { justify-content: stretch; }
    .signup-submit-row input[type="image"] {
        width: 100% !important;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Employer posting type page */
.posting-type-page {
    min-height: 680px;
    padding: 66px 24px 90px;
    background:
        radial-gradient(circle at 6% 12%, rgba(42, 163, 154, .12), transparent 25%),
        radial-gradient(circle at 96% 35%, rgba(233, 106, 88, .1), transparent 26%),
        var(--cream);
}
.posting-type-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
}
.employer-page-intro {
    max-width: 760px;
}
.employer-page-intro h1 {
    max-width: 760px;
    margin: 13px 0 18px 15px;
    color: var(--navy);
    font-size: clamp(30px, 5vw, 30px);
    line-height: 1.05;
    letter-spacing: -2.4px;
}
.employer-page-intro h1 em {
    color: var(--coral);
    font-family: verdana;
    font-weight: 500;
}
.employer-page-intro > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
}
.employer-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 36px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 22px rgba(20, 52, 87, .05);
}
.employer-tools a {
    padding: 10px 13px;
    border-radius: 8px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
	font-family:verdana;
}
.employer-tools a:hover,
.employer-tools a:focus-visible,
.employer-tools a.is-active {
    color: #fff;
    background: var(--navy);
    transform: translateY(-1px);
}
.employer-tools a span { color: var(--teal); }
.employer-tools a:hover span,
.employer-tools a:focus-visible span { color: #a9dcd2; }
.posting-choice-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, .75fr);
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}
.posting-choices,
.posting-pricing {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(20, 52, 87, .07);
}
.posting-choices { padding: 31px; }
.posting-section-heading h2 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -.7px;
}
.posting-option-list {
    display: grid;
    gap: 14px;
    margin-top: 25px;
}
.posting-option {
    position: relative;
    min-height: 128px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 22px 54px 22px 21px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.posting-option:hover,
.posting-option:focus-visible {
    border-color: rgba(23, 105, 170, .45);
    box-shadow: 0 11px 24px rgba(20, 52, 87, .1);
    transform: translateY(-2px);
}
.posting-option-premium {
    border-color: rgba(9, 87, 167, .2);
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 75%);
}
.posting-option-free {
    background: #fbfefd;
}
.posting-option-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    color: #fff;
    background: var(--navy);
    font-size: 22px;
}
.posting-option-free .posting-option-icon {
    color: var(--teal);
    background: #e3f5f1;
    font-size: 20px;
}
.posting-option-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}
.posting-option-copy strong {
    color: var(--navy);
    font-size: 19px;
    line-height: 1.2;
}
.posting-option-copy > span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}
.posting-option-copy small {
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.45;
}
.posting-option-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--teal);
    font-size: 25px;
    transform: translateY(-50%);
}
.posting-pricing {
    padding: 28px;
    color: #dce8f2;
    background: var(--navy);
}
.posting-pricing-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 21px;
    border: 1px solid rgba(169, 220, 210, .35);
    border-radius: 11px;
    color: #a9dcd2;
    font-size: 20px;
    font-weight: 800;
}
.posting-pricing .section-kicker { color: #a9dcd2; }
.posting-pricing h2 {
    margin: 6px 0 12px;
    color: #fff;
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.5px;
}
.posting-pricing > p:not(.section-kicker) {
    margin: 0 0 21px;
    color: #aabace;
    font-size: 13px;
    line-height: 1.6;
}
.posting-pricing ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.posting-pricing li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
}
.posting-pricing li span {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}
.posting-pricing li strong {
    color: #dce8f2;
    font-size: 12px;
    text-align: right;
}
.posting-pricing li em {
    display: block;
    margin-top: 3px;
    color: #a9dcd2;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 800px) {
    .posting-type-page { padding: 52px 20px 70px; }
    .posting-choice-layout { grid-template-columns: 1fr; }
    .posting-pricing { order: 2; }
}
@media (max-width: 560px) {
    .employer-page-intro h1 { font-size: clamp(36px, 10vw, 50px); }
    .employer-tools { display: grid; grid-template-columns: repeat(2, 1fr); }
    .employer-tools a { text-align: center; }
    .posting-choices { padding: 23px 19px; }
    .posting-option { align-items: flex-start; padding: 19px 43px 19px 16px; }
    .posting-option-icon { width: 37px; height: 37px; font-size: 19px; }
    .posting-option-copy strong { font-size: 16px; }
    .posting-option-arrow { right: 15px; }
}

/* Free and premium job posting forms */
.posting-form-page {
    float: none !important;
    width: 100% !important;
    min-height: 760px;
    margin: 0 !important;
    padding: 34px 24px 90px;
    background:
        radial-gradient(circle at 5% 8%, rgba(42, 163, 154, .1), transparent 23%),
        radial-gradient(circle at 97% 28%, rgba(233, 106, 88, .08), transparent 24%),
        var(--cream);
}
.posting-form-shell {
    width: min(1080px, 100%) !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}
.posting-form-page .employer-tools {
    width: 100%;
    margin-top: 0;
}
.employer-menu-wrap {
    width: 100%;
}
.posting-form-page .posting-form-shell > div:first-child {
    margin-top: 0 !important;
}
.employer-tools-legacy {
    width: 100% !important;
    margin: 0 0 24px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 22px rgba(20, 52, 87, .05);
}
.employer-tools-legacy > table,
.employer-tools-legacy > table > tbody {
    display: block;
    width: 100% !important;
}
.employer-tools-legacy > table > tbody > tr:first-child {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.employer-tools-legacy > table > tbody > tr:first-child > td:nth-child(even) {
    display: none;
}
.employer-tools-legacy > table > tbody > tr:first-child > td:nth-child(odd) {
    width: auto !important;
    min-height: 42px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 130px;
    padding: 9px 12px;
    border-radius: 8px !important;
    color: var(--ink-soft) !important;
    background: #f4f8fc !important;
    text-align: center !important;
}
.employer-tools-legacy > table > tbody > tr:first-child > td#jobPID {
    color: #fff !important;
    background: var(--navy) !important;
}
.employer-tools-legacy td a {
    color: inherit !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}
.employer-tools-legacy td span { display: none; }
.employer-tools-legacy > table > tbody > tr:last-child { display: none; }
.posting-partners {
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(42, 163, 154, .23);
    border-radius: 13px;
    color: var(--ink-soft);
    background: #f2fbf9;
    font-size: 12px !important;
    line-height: 1.65;
}
.posting-partners p { margin: 4px 0 9px; }
.posting-partners a { color: var(--blue) !important; text-decoration: none; }
.posting-partners a:hover { text-decoration: underline; }
.posting-form-card {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 32px !important;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(20, 52, 87, .08);
}
.posting-form-card .latestJobPosting,
.posting-form-card .seeker_envnt2,
.posting-form-card .main-frame2News,
.posting-form-card .content-frameNew2 {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.posting-form-card > .latestJobPosting > .clear,
.posting-form-heading + .registerClassHeight,
.posting-form-heading ~ .clear {
    display: none;
}
.posting-form-heading {
    margin: 0 0 26px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--line);
}
.posting-form-heading::before {
    content: "Employer portal";
    display: block;
    margin-bottom: 6px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: capitalize;
}
.posting-form-heading h2,
.posting-form-heading .registerh2 {
    margin: 0 !important;
    color: var(--navy) !important;
    font-size: 29px !important;
    line-height: 1.2;
    letter-spacing: -.8px;
}
.posting-job-form { display: block; width: 100%; }
.posting-form-table {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
}
.posting-form-table > tbody > tr {
    display: grid;
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
    gap: 17px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f7;
}
.posting-form-table > tbody > tr:last-child { border-bottom: 0; }
.posting-form-table > tbody > tr > td {
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--ink-soft);
    font-size: 13px;
}
.posting-form-table > tbody > tr > td:first-child {
    padding-top: 12px !important;
    color: var(--navy);
    font-weight: 800;
}
.posting-form-table input:not([type="hidden"]):not([type="submit"]),
.posting-form-table select,
.posting-form-table textarea {
    width: 100% !important;
    max-width: 100%;
    min-height: 47px;
    margin: 0 !important;
    padding: 0 13px;
    border: 1px solid var(--line) !important;
    border-radius: 9px;
    outline: none;
    color: var(--ink);
    background: #fbfdff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.posting-form-table textarea {
    min-height: 280px;
    padding: 13px;
    resize: vertical;
}
.posting-form-table input[type="file"] {
    padding: 10px !important;
    color: var(--ink-soft);
    font-size: 12px;
}
.posting-form-table input:focus,
.posting-form-table select:focus,
.posting-form-table textarea:focus {
    border-color: var(--blue) !important;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.posting-form-table td:has(> #countryID) {
    display: grid;
    grid-template-columns: minmax(110px, .6fr) minmax(170px, 1fr) minmax(170px, 1fr);
    gap: 10px;
}
.posting-form-table td:has(> #countryID) > span { display: contents; }
.posting-form-table td:has(> #employer_address) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.posting-form-table .errorMSG {
    display: block;
    margin: 0 0 6px;
	font-weight:bold;
    color: red !important;
    font-size: 13px !important;
    line-height: 1.35;
}
.posting-form-table img {
    display: block;
    width: 82px !important;
    height: 82px !important;
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    object-fit: contain;
}
.posting-form-table #deslen {
    width: 96px !important;
    min-height: 34px;
    margin-top: 8px !important;
    color: var(--ink-soft);
    background: #f2f6fa;
    font-size: 11px;
    text-align: center;
}
.posting-form-page #job_description_tbl,
.posting-form-page .mceLayout {
    width: 100% !important;
    max-width: 100% !important;
}
.posting-form-table input[type="submit"],
.posting-form-table .btn,
.posting-form-table .btninactive {
    width: auto !important;
    min-width: 190px;
    height: 50px !important;
    padding: 0 24px;
    border: 0 !important;
    border-radius: 10px;
    color: #fff !important;
    background: var(--navy) !important;
    cursor: pointer;
    font: inherit;
    font-size: 14px !important;
    font-weight: 800 !important;
    transition: background .2s ease, transform .2s ease;
}
.posting-form-table input[type="submit"]:hover:not(:disabled) {
    background: var(--blue) !important;
    transform: translateY(-1px);
}
.posting-form-table input[type="submit"]:disabled,
.posting-form-table .btninactive:disabled {
    color: #77899d !important;
    background: #dce5ee !important;
    cursor: not-allowed;
}
.posting-cost-panel {
    float: none !important;
    width: 100% !important;
    margin: 22px 0 0 !important;
}
.posting-cost-panel > div { margin: 0 !important; }
.posting-cost-panel .up_calculator {
    width: 100% !important;
    border: 0 !important;
    border-radius: 15px;
    overflow: hidden;
    background: var(--navy) !important;
}
.posting-cost-panel .up_calculator table { width: 100%; }
.posting-cost-panel .up_calculator td {
    padding: 7px 18px !important;
    color: #dce8f2 !important;
}
.posting-cost-panel .up_calculator td:first-child {
    color: #fff !important;
}

@media (max-width: 760px) {
    .posting-form-page { padding: 24px 18px 65px; }
    .posting-form-card { padding: 25px 20px !important; }
    .posting-form-table > tbody > tr {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 13px 0;
    }
    .posting-form-table > tbody > tr > td:first-child {
        padding-top: 0 !important;
    }
}
@media (max-width: 520px) {
    .employer-tools-legacy > table > tbody > tr:first-child {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .employer-tools-legacy > table > tbody > tr:first-child > td:nth-child(odd) {
        min-width: 0;
    }
    .posting-form-heading h2,
    .posting-form-heading .registerh2 { font-size: 25px !important; }
    .posting-form-table td:has(> #countryID),
    .posting-form-table td:has(> #employer_address) {
        grid-template-columns: 1fr;
    }
    .posting-form-table input[type="submit"] { width: 100% !important; }
}

/* Resume search plan page */
.resume-plan-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, .75fr);
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}
.resume-plan-choices { padding: 31px; }
.resume-plan-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 25px;
}
.resume-plan-card {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink);
    background: #fbfdff;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.resume-plan-card:hover,
.resume-plan-card:focus-visible {
    border-color: rgba(23, 105, 170, .45);
    box-shadow: 0 11px 24px rgba(20, 52, 87, .1);
    transform: translateY(-2px);
}
.resume-plan-card.resume-plan-featured {
    border-color: rgba(42, 163, 154, .3);
    background: linear-gradient(135deg, #eefaf7 0%, #fff 76%);
}
.resume-plan-number {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}
.resume-plan-featured .resume-plan-number {
    background: var(--teal);
}
.resume-plan-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
    margin-top: 23px;
}
.resume-plan-copy strong {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.2;
}
.resume-plan-copy > span {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 700;
}
.resume-plan-price {
    margin-top: auto;
    padding-top: 23px;
    color: var(--blue);
    font-size: 23px;
    font-weight: 800;
    white-space: nowrap;
}
.resume-plan-price small {
    color: var(--ink-soft);
    font-size: 9px;
    letter-spacing: .08em;
}
.resume-plan-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: var(--teal);
    font-size: 22px;
}
.resume-right-rail {
    min-width: 0;
    display: grid;
    gap: 18px;
    align-self: start;
}
.resume-search-info { min-height: 0; }
.resume-search-info .posting-pricing-icon {
    font-family: verdana;
    font-size: 26px;
}
.resume-support {
    display: grid;
    gap: 5px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 11px;
}
.resume-support strong { color: #fff; }
.resume-support a {
    color: #a9dcd2;
    text-decoration: none;
}
.resume-support a:hover { text-decoration: underline; }
.resume-support span { color: #aabace; }
.resume-google-ad {
    width: 100%;
    min-height: 280px;
    padding: 13px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(20, 52, 87, .06);
    text-align: center;
}
.resume-google-ad .ad-label {
    display: block;
    margin-bottom: 9px;
    color: #8b9bad;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: capitalize;
}
.resume-google-ad .adsbygoogle {
    width: 100%;
    min-height: 250px;
}

@media (max-width: 800px) {
    .resume-plan-layout { grid-template-columns: 1fr; }
    .resume-plan-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .resume-right-rail { grid-template-columns: 1fr; }
    .resume-google-ad {
        width: min(100%, 420px);
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 560px) {
    .resume-plan-choices { padding: 23px 19px; }
    .resume-plan-list { grid-template-columns: 1fr; }
    .resume-plan-card {
        min-height: 190px;
        padding: 18px;
    }
    .resume-plan-number { width: 38px; height: 38px; }
    .resume-plan-copy { margin-top: 18px; }
    .resume-plan-price {
        padding-top: 18px;
        font-size: 20px;
    }
    .resume-plan-arrow { right: 16px; bottom: 16px; }
}

/* Employer profile page */
.employer-profile-page {
    float: none !important;
    width: 100% !important;
    min-height: 760px;
    padding: 64px 24px 90px;
    background:
        radial-gradient(circle at 6% 10%, rgba(42, 163, 154, .11), transparent 24%),
        radial-gradient(circle at 96% 30%, rgba(233, 106, 88, .08), transparent 24%),
        var(--cream);
}
.employer-profile-shell,
.employer-profile-content {
    width: min(1080px, 100%) !important;
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.employer-profile-support {
    margin: 17px 0 0;
    padding: 13px 16px;
    border: 1px solid rgba(42, 163, 154, .23);
    border-radius: 11px;
    color: var(--ink-soft);
    background: #f2fbf9;
    font-size: 12px;
    line-height: 1.55;
}
.employer-profile-support a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}
.employer-profile-support a:hover { text-decoration: underline; }
.employer-profile-support span {
    color: var(--navy);
    font-weight: 800;
}
.employer-profile-content {
    float: none !important;
    margin-top: 24px !important;
}
.employer-profile-details {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
.employer-profile-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--line);
    border-radius: 19px !important;
    overflow: hidden;
    background: var(--white) !important;
    box-shadow: 0 12px 34px rgba(20, 52, 87, .08);
}
.employer-profile-card > p:first-child {
    margin: 0;
    padding: 0 30px;
    color: #c94c3f !important;
    background: #fff;
    font-size: 12px;
}
.employer-profile-card > p:first-child:not(:empty) { padding-top: 18px; }
.employer-profile-box {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.employer-profile-card-header {
    width: 100% !important;
    padding: 27px 30px 22px !important;
    border-bottom: 1px solid var(--line) !important;
}
.employer-profile-card-header .dashboard-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    color: var(--navy);
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.7px;
}
.employer-profile-card-header .dashboard-title > span {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
}
.employer-profile-card-header .dashboard-title > span b { color: #c94c3f; }
.employer-profile-box > .tr-single-body {
    width: 100% !important;
    padding: 28px 30px 32px !important;
}
.employer-profile-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 0 !important;
}
.employer-profile-fields,
.employer-profile-logo-column {
    float: none !important;
    width: auto !important;
    min-width: 0;
    padding: 0 !important;
}
.employer-profile-logo-column {
    grid-column: 1 / -1;
}
.employer-profile-fields p {
    display: grid;
    gap: 7px;
    margin: 0 0 17px !important;
}
.employer-profile-fields p:has(> br:only-child),
.employer-profile-fields p:empty { display: none; }
.employer-profile-fields label {
    color: var(--navy);
    font-size: 12px;
    font-weight: 800 !important;
}
.employer-profile-fields input:not([type="submit"]),
.employer-profile-fields select {
    width: 100% !important;
    height: 47px !important;
    margin: 0 !important;
    padding: 0 13px !important;
    border: 1px solid var(--line) !important;
    border-radius: 9px;
    outline: none;
    color: var(--ink);
    background: #fbfdff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.employer-profile-fields input:focus,
.employer-profile-fields select:focus {
    border-color: var(--blue) !important;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.employer-profile-form input[type="submit"] {
    width: 100% !important;
    min-height: 50px;
    margin-top: 11px;
    padding: 0 22px;
    border: 0 !important;
    border-radius: 10px;
    color: #fff !important;
    background: var(--navy) !important;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}
.employer-profile-form input[type="submit"]:hover {
    background: var(--blue) !important;
    transform: translateY(-1px);
}
.employer-logo-card {
    min-height: 100%;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f7fafc;
}
.employer-logo-card h2 {
    margin: 0 0 17px;
    color: var(--navy);
    font-size: 17px !important;
    line-height: 1.25;
}
.employer-logo-card input[type="file"] {
    width: 100% !important;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink-soft);
    background: #fff;
    font-size: 11px;
}
.employer-logo-card #profile-image {
    width: 100% !important;
    max-width: 190px;
    height: 150px !important;
    display: block;
    margin: 17px auto;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    object-fit: contain;
}
.employer-logo-card #upload-container,
.employer-logo-card #aaiu-upload-container {
    position: static !important;
    text-align: center;
}
.employer-logo-delete {
    display: inline-block;
    padding: 7px 11px;
    border-radius: 7px;
    color: #b74438 !important;
    background: #fff0ed;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}
.employer-logo-delete:hover { background: #ffe3de; }
.employer-logo-card .upload_explain {
    display: block;
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

@media (max-width: 900px) {
    .employer-logo-card {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(160px, .7fr) minmax(180px, 1fr);
        gap: 15px 22px;
        align-items: center;
    }
    .employer-logo-card h2 { grid-column: 1 / -1; }
}
@media (max-width: 650px) {
    .employer-profile-page { padding: 50px 18px 70px; }
    .employer-profile-card-header { padding: 23px 20px 18px !important; }
    .employer-profile-card-header .dashboard-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        font-size: 24px;
    }
    .employer-profile-box > .tr-single-body { padding: 23px 20px 27px !important; }
    .employer-profile-grid { grid-template-columns: 1fr; gap: 0; }
    .employer-profile-logo-column { grid-column: auto; margin-top: 8px; }
    .employer-logo-card { display: block; }
}

/* Employer change password page */
.change-password-page {
    float: none !important;
    width: 100% !important;
    min-height: 720px;
    padding: 64px 24px 90px;
    background:
        radial-gradient(circle at 7% 12%, rgba(42, 163, 154, .11), transparent 24%),
        radial-gradient(circle at 95% 31%, rgba(233, 106, 88, .08), transparent 24%),
        var(--cream);
}
.change-password-shell,
.change-password-content {
    width: min(1080px, 100%) !important;
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.change-password-content {
    float: none !important;
    margin-top: 24px !important;
}
.change-password-details {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
.change-password-card {
    width: min(610px, 100%) !important;
    margin: 0 auto !important;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(20, 52, 87, .08);
}
.change-password-card-heading {
    position: relative;
    padding: 27px 30px 23px;
    border-bottom: 1px solid var(--line);
}
.change-password-card-heading h2 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.7px;
}
.change-password-card-heading > span {
    position: absolute;
    right: 30px;
    bottom: 27px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
}
.change-password-message {
    margin: 0 !important;
    padding: 0 30px;
    color: #c94c3f !important;
    background: #fff;
    font-size: 12px;
    line-height: 1.5;
    text-align: left !important;
}
.change-password-message:not(:empty) { padding-top: 18px; }
.change-password-form-box {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.change-password-form-box > .tr-single-body {
    width: 100% !important;
    padding: 27px 30px 31px !important;
}
.change-password-fields,
.change-password-fields > .col-md-4 {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.change-password-fields p {
    display: grid;
    gap: 7px;
    margin: 0 0 17px !important;
}
.change-password-fields label {
    color: var(--navy);
    font-size: 12px !important;
    font-weight: 800 !important;
}
.change-password-fields input[type="password"] {
    width: 100% !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 13px !important;
    border: 1px solid var(--line) !important;
    border-radius: 9px;
    outline: none;
    color: var(--ink);
    background: #fbfdff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.change-password-fields input[type="password"]:focus {
    border-color: var(--blue) !important;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 105, 170, .1);
}
.change-password-submit { margin: 24px 0 0 !important; }
.change-password-submit input[type="submit"] {
    width: 100% !important;
    height: 50px;
    padding: 0 23px;
    border: 0 !important;
    border-radius: 10px;
    color: #fff !important;
    background: var(--navy) !important;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}
.change-password-submit input[type="submit"]:hover {
    background: var(--blue) !important;
    transform: translateY(-1px);
}

@media (max-width: 650px) {
    .change-password-page { padding: 50px 18px 70px; }
    .change-password-card-heading { padding: 23px 20px 19px; }
    .change-password-card-heading h2 { font-size: 24px; }
    .change-password-card-heading > span {
        position: static;
        display: block;
        margin-top: 8px;
    }
    .change-password-message { padding-left: 20px; padding-right: 20px; }
    .change-password-form-box > .tr-single-body { padding: 23px 20px 27px !important; }
}

/* Employer job management dashboard */
.manage-jobs-page {
    float: none !important;
    width: 100% !important;
    min-height: 760px;
    margin: 0 !important;
    padding: 64px 24px 90px;
    background:
        radial-gradient(circle at 6% 10%, rgba(42, 163, 154, .11), transparent 24%),
        radial-gradient(circle at 96% 30%, rgba(233, 106, 88, .08), transparent 24%),
        var(--cream);
}
.manage-jobs-shell,
.manage-jobs-details {
    width: min(1080px, 100%) !important;
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.manage-jobs-support {
    margin: 17px 0 0;
    padding: 13px 16px;
    border: 1px solid rgba(42, 163, 154, .23);
    border-radius: 11px;
    color: var(--ink-soft);
    background: #f2fbf9;
    font-size: 12px;
    line-height: 1.55;
}
.manage-jobs-support a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}
.manage-jobs-support span { color: var(--navy); font-weight: 800; }
.manage-jobs-details {
    float: none !important;
    margin-top: 24px !important;
}
.manage-jobs-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px !important;
    background: var(--white) !important;
    box-shadow: 0 12px 34px rgba(20, 52, 87, .08);
}
.manage-jobs-heading {
    padding: 27px 30px 22px;
    border-bottom: 1px solid var(--line);
}
.manage-jobs-heading h2 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.7px;
}
.manage-jobs-message {
    margin: 0 !important;
    padding: 0 30px;
    color: #23866e !important;
    font-size: 12px;
}
.manage-jobs-message:not(:empty) { padding-top: 18px; }
.manage-account-type {
    width: calc(100% - 60px) !important;
    margin: 0 30px !important;
}
.manage-account-type:empty { display: none; }
.manage-listings-box {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.manage-summary {
    margin: 0 30px;
    padding: 25px 0 27px !important;
    border-bottom: 1px solid var(--line) !important;
}
.manage-summary-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}
.manage-summary-heading .section-kicker {
    margin: 0 0 4px;
}
.manage-summary-heading h3 {
    margin: 0;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.35px;
}
.manage-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.manage-summary-stat {
    min-width: 0;
    padding: 15px 14px;
    border: 1px solid #e4ebf2;
    border-radius: 11px;
    background: #f7fafc;
}
.manage-summary-stat span {
    display: block;
    min-height: 28px;
    margin-bottom: 7px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .04em;
    text-transform: capitalize;
}
.manage-summary-stat strong {
    display: block;
    color: var(--navy);
    font-size: 24px;
    line-height: 1;
}
.manage-summary-balance {
    border-color: rgba(42, 163, 154, .3);
    background: #eef9f6;
}
.manage-summary-balance span {
    color: var(--teal);
}
.manage-summary-balance strong {
    color: #197965;
}
.manage-listings-box > .tr-single-body {
    padding: 28px 30px 32px !important;
}
.manage-listings-box > .tr-single-body > .row {
    margin: 0 !important;
}
.manage-listings-content {
    margin: 0 !important;
    overflow: visible !important;
}
.manage-listings-content > p:first-child,
.manage-listings-content > p:nth-of-type(2) { display: none; }
.manage-search-form {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #f7fafc;
}
.manage-search-keyword { flex: 1.6 1 270px; min-width: 190px; }
.manage-search-status { flex: 1 1 175px; min-width: 145px; }
.manage-search-date { flex: .8 1 150px; min-width: 125px; }
.manage-search-submit { flex: 0 0 82px; }
.manage-search-form input,
.manage-search-form select {
    float: none !important;
    width: 100% !important;
    height: 43px !important;
    margin: 0 !important;
    padding: 0 12px !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-size: 12px;
}
.manage-search-form input[type="submit"] {
    min-width: 82px;
    border-color: var(--navy) !important;
    color: #fff !important;
    background: var(--navy) !important;
    cursor: pointer;
    font-weight: 800;
}
.manage-job-card {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 0 13px !important;
    padding: 18px 20px !important;
    border: 1px solid var(--line) !important;
    border-radius: 13px !important;
    background: #fff !important;
    box-shadow: 0 7px 20px rgba(20, 52, 87, .06) !important;
}
.manage-job-card .vertical-job-header {
    margin-top: 0 !important;
    padding: 3px 0 8px !important;
}
.manage-job-card .h4jobtitle {
    margin: 0 !important;
    color: var(--navy) !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
}
.manage-job-card .h4jobtitle p {
    margin: 2px 0 0;
    color: var(--ink-soft) !important;
    line-height: 1.45;
}
.manage-job-card .vertical-job-card {
    display: block;
    clear: both;
    padding-top: 8px;
    border-top: 1px solid #edf2f7;
}
.manage-job-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: -5px !important;
}
.manage-job-actions a { text-decoration: none; }
.manage-job-actions input[type="button"] {
    width: auto !important;
    min-width: 68px;
    height: 31px !important;
    padding: 0 11px;
    border: 0 !important;
    border-radius: 7px !important;
    cursor: pointer;
    font: inherit;
    font-size: 10px !important;
    font-weight: 800 !important;
}
.manage-pagination {
    margin: 25px 0 0 !important;
}
.manage-pagination .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

@media (max-width: 860px) {
    .manage-summary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .manage-search-form { gap: 7px; padding: 12px; }
    .manage-search-keyword { min-width: 160px; }
    .manage-search-status { min-width: 130px; }
    .manage-search-date { min-width: 112px; }
}
@media (max-width: 650px) {
    .manage-jobs-page { padding: 50px 18px 70px; }
    .manage-jobs-heading { padding: 23px 20px 18px; }
    .manage-jobs-heading h2 { font-size: 24px; }
    .manage-account-type { width: calc(100% - 40px) !important; margin: 0 20px !important; }
    .manage-summary {
        margin: 0 20px;
    }
    .manage-summary-heading { display: block; }
    .manage-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .manage-summary-balance { grid-column: 1 / -1; }
    .manage-listings-box > .tr-single-body { padding: 23px 20px 27px !important; }
    .manage-search-form { display: grid; grid-template-columns: 1fr; }
    .manage-search-keyword,
    .manage-search-status,
    .manage-search-date,
    .manage-search-submit { min-width: 0; }
    .manage-job-card .vertical-job-header {
        float: none !important;
        width: 100% !important;
    }
    .manage-job-actions {
        float: none !important;
        width: 100%;
        margin-top: 10px !important;
    }
}
@media (max-width: 430px) {
    .manage-summary-grid { grid-template-columns: 1fr; }
    .manage-summary-balance { grid-column: auto; }
    .manage-summary-stat span { min-height: 0; }
}

/* Employer job payment page */
.pay-job-page {
    float: none !important;
    width: 100% !important;
    min-height: 760px;
    margin: 0 !important;
    padding: 64px 24px 90px;
    background:
        radial-gradient(circle at 6% 10%, rgba(42, 163, 154, .11), transparent 24%),
        radial-gradient(circle at 96% 30%, rgba(233, 106, 88, .08), transparent 24%),
        var(--cream);
}
.pay-job-shell,
.pay-job-content {
    width: min(1080px, 100%) !important;
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.pay-job-content { float: none !important; }
.pay-job-card {
    float: none !important;
    width: 100% !important;
    margin: 24px 0 0 !important;
    padding: 0 0 31px !important;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(20, 52, 87, .08);
}
.pay-job-heading {
    position: relative;
    padding: 27px 30px 22px;
    border-bottom: 1px solid var(--line);
}
.pay-job-heading h2 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.7px;
}
.pay-job-heading > span {
    position: absolute;
    right: 30px;
    bottom: 27px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
}
.pay-job-message {
    margin: 0 !important;
    padding: 0 30px;
    color: #23866e !important;
    font-size: 12px;
}
.pay-job-message:not(:empty) { padding-top: 18px; }
.pay-job-form {
    width: 100%;
    padding: 28px 30px 0;
}
.pay-job-table {
    width: 100% !important;
    overflow: hidden;
    border: 1px solid var(--line);
    border-spacing: 0 !important;
    border-radius: 13px;
    background: #fff;
}
.pay-job-table tr:first-child {
    height: auto !important;
    color: #fff !important;
    background: var(--navy) !important;
}
.pay-job-table tr:first-child td {
    padding: 14px 12px !important;
    border: 0 !important;
    font-size: 11px;
    letter-spacing: .03em;
}
.pay-job-table td {
    padding: 17px 12px !important;
    border: 0 !important;
    border-bottom: 1px solid #edf2f7 !important;
    color: #000;
    background: transparent !important;
    font-size: 13px;
    line-height: 1.55;
}
.pay-job-table tr:last-child td { border-bottom: 0 !important; }
.pay-job-table td:first-child { padding-left: 18px !important; }
.pay-job-table td:last-child { padding-right: 18px !important; }
.pay-job-table hr {
    margin: 0;
    border: 0;
    border-top: 1px solid var(--line);
}
.pay-job-image-button {
    display: inline-flex;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(20, 52, 87, .13);
}
.pay-job-image-button img {
    display: block;
    max-width: 118px;
    height: auto;
}
.pay-job-button-link { display: inline-block; text-decoration: none; }
.pay-job-button {
    width: auto !important;
    min-width: 112px;
    height: 42px !important;
    padding: 0 19px !important;
    border: 0 !important;
    border-radius: 9px !important;
    color: #fff !important;
    background: var(--navy) !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    transition: background .2s ease, transform .2s ease;
}
.pay-job-button:hover {
    background: var(--blue) !important;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .pay-job-page { padding: 50px 18px 70px; }
    .pay-job-heading { padding: 23px 20px 19px; }
    .pay-job-heading h2 { font-size: 24px; }
    .pay-job-heading > span {
        position: static;
        display: block;
        margin-top: 8px;
    }
    .pay-job-form {
        overflow-x: auto;
        padding: 23px 20px 0;
        -webkit-overflow-scrolling: touch;
    }
    .pay-job-table { min-width: 720px; }
}

/* Repost option and confirmation pages */
.repost-option-page,
.posting-confirmation-page {
    float: none !important;
    width: 100% !important;
    min-height: 720px;
    margin: 0 !important;
    padding: 64px 24px 90px;
    background:
        radial-gradient(circle at 6% 10%, rgba(42, 163, 154, .11), transparent 24%),
        radial-gradient(circle at 96% 30%, rgba(233, 106, 88, .08), transparent 24%),
        var(--cream);
}
.repost-option-shell,
.posting-confirmation-shell {
    width: min(1080px, 100%) !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
}
.repost-option-card,
.posting-confirmation-card {
    float: none !important;
    width: 100% !important;
    margin: 24px 0 0 !important;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 52, 87, .08);
}
.repost-option-content { padding-bottom: 30px; }
.repost-option-heading {
    padding: 27px 30px 22px;
    border-bottom: 1px solid var(--line);
}
.repost-option-heading h2 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.7px;
}
.repost-choice {
    float: none !important;
    width: auto !important;
    min-height: 104px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: center;
    gap: 4px 18px;
    margin: 22px 30px 0 !important;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fbfdff;
}
.repost-choice:hover { border-color: rgba(23, 105, 170, .4); }
.repost-choice > input[type="radio"] {
    grid-row: 1 / span 2;
    align-self: center;
    float: none !important;
    width: 19px;
    height: 19px;
    margin: 0 !important;
    accent-color: var(--teal);
    transform: none !important;
}
.repost-choice > a { display: contents; text-decoration: none; }
.repost-choice .option_premium-posting121,
.repost-choice .option_premium-posting1212 {
    float: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    color: var(--navy) !important;
    font-family: inherit !important;
}
.repost-choice .option_premium-posting121 {
    font-size: 17px !important;
    font-weight: 800;
}
.repost-choice .option_premium-posting1212 {
    grid-column: 2;
    clear: none !important;
    font-size: 12px !important;
    line-height: 1.5;
}
.repost-duration-panel {
    clear: both;
    width: auto !important;
    margin: 14px 30px 0 !important;
    padding: 20px;
    border: 1px solid rgba(42, 163, 154, .28) !important;
    border-radius: 13px;
    background: #f2fbf9;
}
.repost-duration-panel > .option_premium-posting {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 13px;
    padding: 0 !important;
    color: var(--navy) !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 15px !important;
    text-align: left;
}
.repost-duration-panel > p {
    width: 100% !important;
    height: auto !important;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 !important;
    padding: 11px 13px !important;
    border: 1px solid #dbe8e5;
    border-radius: 9px !important;
    color: var(--ink) !important;
    background: #fff !important;
    font-size: 12px;
}
.repost-duration-panel input[type="radio"] {
    width: 17px;
    height: 17px;
    margin: 0 !important;
    accent-color: var(--teal);
    transform: none !important;
}
.repost-option-page .job_posting_right_panel { display: none; }

.posting-confirmation-card {
    width: min(720px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.posting-confirmation-content {
    float: none !important;
    width: 100% !important;
    padding: 38px 40px 42px !important;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.75;
}
.posting-confirmation-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-size: 25px;
    font-weight: 800;
}
.posting-confirmation-content h2 {
    margin: 6px 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.6px;
}
.posting-confirmation-content a { color: var(--blue); }

/* Repost form refinements */
.repost-job-page .posting-form-card { margin-top: 24px !important; }
.repost-job-page .posting-form-table input[type="number"] { appearance: textfield; }
.repost-job-page .posting-partners { margin: 24px 0 0 !important; text-align: center; }

@media (max-width: 650px) {
    .repost-option-page,
    .posting-confirmation-page { padding: 50px 18px 70px; }
    .repost-option-heading { padding: 23px 20px 18px; }
    .repost-option-heading h2 { font-size: 24px; }
    .repost-choice { margin: 16px 20px 0 !important; padding: 17px; }
    .repost-duration-panel { margin: 12px 20px 0 !important; padding: 15px; }
    .posting-confirmation-content { padding: 30px 24px 34px !important; }
    .posting-confirmation-content h2 { font-size: 23px; }
}

/* Job seeker account, applications, and resume workspace */
.seeker-dashboard-page,
.seeker-resume-page {
    float: none !important;
    width: 100% !important;
    min-height: 720px;
    margin: 0 !important;
    padding: 56px 24px 88px;
    background:
        radial-gradient(circle at 7% 8%, rgba(42, 163, 154, .11), transparent 24%),
        radial-gradient(circle at 95% 22%, rgba(233, 106, 88, .08), transparent 23%),
        var(--cream);
}
.seeker-dashboard-shell,
.seeker-resume-shell {
    width: min(1100px, 100%) !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}
.seeker-dashboard-content { width: 100%; }
.seeker-dashboard-intro,
.seeker-resume-intro {
    max-width: 760px;
    margin-bottom: 28px;
}
.seeker-dashboard-intro h1,
.seeker-resume-intro h1 {
    margin: 12px 0 13px;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 42px);
    line-height: 1.04;
    letter-spacing: -2px;
}
.seeker-dashboard-intro h1 em,
.seeker-resume-intro h1 em {
    color: var(--coral);
    font-family: verdana;
    font-weight: 500;
}
.seeker-dashboard-intro > p:last-child,
.seeker-resume-intro > p:last-child {
    max-width: 650px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.65;
}
.seeker-dashboard-nav,
.seeker-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 25px rgba(20, 52, 87, .05);
}
.seeker-dashboard-nav a,
.seeker-tools a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 8px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
	font-family:verdana;
}
.seeker-dashboard-nav a:hover,
.seeker-tools a:hover { color: var(--navy); background: #f0f6fb; }
.seeker-dashboard-nav a.is-active,
.seeker-tools a.is-active { color: #fff; background: var(--navy); }
.seeker-dashboard-page #Menu2,
.seeker-dashboard-page #ashique_menu2 { display: none !important; }
.seeker-account-card,
.seeker-editor-card,
.seeker-apply-card,
.seeker-applied-card,
.seeker-resume-card {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 28px !important;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 52, 87, .08);
}
.seeker-account-card > .latestJobPosting,
.seeker-account-form {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
.seeker-account-form > table:first-of-type { width: 100% !important; }
.seeker-account-form form > table,
.seeker-editor-card form > table,
.seeker-apply-card form > table {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
}
.seeker-account-form form > table > tbody > tr,
.seeker-editor-card form > table > tbody > tr,
.seeker-apply-card form > table > tbody > tr {
    display: grid;
    grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr);
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.seeker-account-form form > table > tbody > tr > td,
.seeker-editor-card form > table > tbody > tr > td,
.seeker-apply-card form > table > tbody > tr > td {
    width: auto !important;
    padding: 0 !important;
    font-family: inherit !important;
}
.seeker-account-form input:not([type="hidden"]):not([type="checkbox"]):not([type="submit"]),
.seeker-account-form select,
.seeker-account-form textarea,
.seeker-editor-card input:not([type="hidden"]):not([type="checkbox"]):not([type="submit"]),
.seeker-editor-card select,
.seeker-editor-card textarea,
.seeker-apply-card input:not([type="hidden"]):not([type="checkbox"]):not([type="submit"]),
.seeker-apply-card select,
.seeker-apply-card textarea {
    width: 100% !important;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--line) !important;
    border-radius: 9px;
    color: var(--ink);
    background: #fbfdff !important;
    font: inherit;
}
.seeker-account-form textarea,
.seeker-editor-card textarea,
.seeker-apply-card textarea { min-height: 170px; resize: vertical; }
.seeker-account-form input[type="submit"],
.seeker-editor-card input[type="submit"],
.seeker-apply-card input[type="submit"] {
    min-width: 175px;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--navy);
    font-weight: 800;
    cursor: pointer;
}
.seeker-account-form .registerh2,
.seeker-editor-card h2,
.seeker-apply-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 24px !important;
}
.seeker-applied-header,
.seeker-applied-row {
    display: grid !important;
    grid-template-columns: .8fr 1.4fr 1.2fr 1fr .8fr;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
}
.seeker-applied-header {
    border-radius: 10px 10px 0 0;
    color: #fff;
    background: var(--navy) !important;
}
.seeker-applied-row {
    min-height: 66px;
    border-bottom: 1px solid var(--line);
    background: #fff !important;
}
.seeker-applied-header > div,
.seeker-applied-row > div {
    float: none !important;
    width: auto !important;
    display: flex;
    align-items: center;
    padding: 13px !important;
    color: inherit !important;
    font-size: 12px;
}
.seeker-applied-row a { color: var(--blue) !important; }
.seeker-resume-message:empty { display: none; }
.seeker-resume-message:not(:empty) {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 9px;
    color: #187467;
    background: #effaf7;
}
.seeker-resume-card .alert.warning {
    margin: 16px 0 24px;
    padding: 14px 17px;
    border-radius: 9px;
    color: #76520c;
    background: #fff5d9;
    font-size: 13px;
}
.seeker-resume-form .col-md-4,
.seeker-resume-form .row { float: none !important; width: 100% !important; margin: 0 !important; }
.seeker-resume-form .col-md-4 > div { margin-bottom: 18px; }
.seeker-resume-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}
.seeker-resume-form input[type="text"],
.seeker-resume-form textarea,
.seeker-resume-form select {
    width: 100% !important;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fbfdff;
    font: inherit;
}
.seeker-resume-form textarea { min-height: 120px; resize: vertical; }
.resume-category-list {
    float: none !important;
    width: 100% !important;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fbfdff;
}
.resume-category-list > div { float: none !important; width: auto !important; font-size: 12px; }
.resume-education-table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}
.resume-education-table th,
.resume-education-table td { min-width: 140px; padding: 9px; border: 1px solid var(--line); }
.seeker-profile-feature {
    margin-bottom: 22px;
    padding: 20px 23px;
    border: 1px solid #cce9e4;
    border-radius: 13px;
    color: var(--ink-soft);
    background: #f1fbf8;
    line-height: 1.6;
}
.seeker-profile-feature .seeker-feature-bg {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
}
.seeker-profile-page .seeker-profile-content,
.seeker-account-page .seeker-account-content { float: none !important; width: 100% !important; }
.seeker-thanks-card { max-width: 720px; margin: 0 auto; text-align: left; }

@media (max-width: 760px) {
    .seeker-dashboard-page,
    .seeker-resume-page { padding: 45px 18px 68px; }
    .seeker-dashboard-nav,
    .seeker-tools { flex-direction: column; }
    .seeker-dashboard-nav a,
    .seeker-tools a { width: 100%; }
    .seeker-account-card,
    .seeker-editor-card,
    .seeker-apply-card,
    .seeker-applied-card,
    .seeker-resume-card { padding: 20px !important; }
    .seeker-account-form form > table > tbody > tr,
    .seeker-editor-card form > table > tbody > tr,
    .seeker-apply-card form > table > tbody > tr { grid-template-columns: 1fr; gap: 8px; }
    .seeker-applied-header { display: none !important; }
    .seeker-applied-row { grid-template-columns: 1fr; padding: 12px !important; }
    .seeker-applied-row > div {
        display: grid;
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 10px;
        padding: 7px !important;
    }
    .seeker-applied-row > div::before {
        content: attr(tableHeadData);
        color: var(--ink-soft);
        font-weight: 800;
    }
    .resume-category-list { grid-template-columns: 1fr; }
}