@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');
:root {
    --font-family-base: 'Poppins', sans-serif;
    --font-size-title: clamp(24px, 2.2vw, 32px);
    --font-size-section: clamp(18px, 1.8vw, 22px);
    --font-size-body: 15px;
    --font-size-small: 13px;
    --line-height-base: 1.5;
    --line-height-heading: 1.4;
    --primary: #050505;
    --primary-light: #138b84;
    --primary-dark: #000000;
    --secondary: #12b3ac;
    --accent: #F59E0B;
    --accent2: #10B981;
    --danger: #EF4444;
    --bg: #FFFFFF;
    --bg2: #FFFFFF;
    --bg-soft: #F7F7F7;
    --sidebar-bg: #050505;
    --sidebar-text: #E8E8E8;
    --sidebar-muted: #6ea7a2;
    --sidebar-active: rgba(111, 226, 214, 0.28);
    --sidebar-w: 260px;
    --sidebar-w-collapsed: 72px;
    --text: #111111;
    --text2: #555555;
    --text3: #999999;
    --border: #EBEBEB;
    --card: #FFFFFF;
    --card-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    /* legacy compat */
    --red: #111;
    --red2: #333;
    --red3: #111;
    --gold: #F59E0B;
    --gold2: #D97706;
    --gold-light: #FFD055;
    --dark: #1A1A1A;
    --dark2: #2A2A2A;
    --dark3: #3A3A3A;
    --grey: #4A4A4A;
    --grey2: #6A6A6A;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --muted: #8A8A8A;
    --success: #10B981;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-base);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--font-size-body);
    line-height: var(--line-height-base);
}

h1,
.hero-title,
.section-title,
.page-title {
    font-size: var(--font-size-title);
    font-weight: 600;
    line-height: var(--line-height-heading);
}

h2,
h3,
h4,
.card-title,
.auth-form-title,
.pf-modal-head-title,
.market-modal-title {
    font-size: var(--font-size-section);
    font-weight: 600;
    line-height: var(--line-height-heading);
}

h5,
h6,
label,
th,
.page-sub,
.page-subtitle,
.auth-form-sub,
.auth-label {
    font-weight: 500;
}

p,
li,
td,
input,
select,
textarea,
.small,
small {
    font-weight: 400;
    line-height: var(--line-height-base);
}

small,
.small {
    font-size: var(--font-size-small);
}

button,
[type="button"],
[type="submit"],
.btn,
.auth-submit-btn,
.pf-save-btn,
.pf-cancel-btn,
.market-action-btn {
    font-family: var(--font-family-base);
    font-weight: 600;
}

input,
select,
textarea,
button,
table,
th,
td,
.topbar-profile-menu,
.sidebar,
.pf-modal-box,
.market-modal-card {
    font-family: var(--font-family-base);
}


/* ===================== LANDING PAGE ===================== */

.land-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.land-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text);
    text-decoration: none;
}

.land-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.land-logo .logo-icon img,
.logo-icon img,
.sb-logo .logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.land-nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.land-nav-links a {
    text-decoration: none;
    color: var(--text2);
    font-size: .92rem;
    font-weight: 500;
    transition: color var(--transition);
}

.land-nav-links a:hover {
    color: var(--text);
}

.land-nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.btn-primary {
    background: #111;
    color: #fff;
    box-shadow: none;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-white {
    background: #fff;
    color: #111;
    border: 1.5px solid var(--border);
}

.btn-white:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 6px 12px;
    font-size: .78rem;
    border-radius: 50px;
}


/* HERO */

.land-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 88px 48px 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, #ffffff 30%, #f0f8ff 55%, #fffdf0 78%, #ffffff 100%);
}

.land-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
    z-index: 2;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .45;
    pointer-events: none;
}

.hero-blob-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, #bae6fd 0%, transparent 70%);
    top: -180px;
    right: -160px;
}

.hero-blob-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #fef08a 0%, transparent 70%);
    bottom: -120px;
    left: -80px;
}

.hero-blob-3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
    top: 45%;
    left: 38%;
    opacity: .3;
}

.hero-content {
    max-width: 580px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F4F4F4;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: .75rem;
    color: var(--accent2);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #111;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #06B6D4, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: .82rem;
    color: var(--text3);
}

.trust-text strong {
    color: var(--text);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hero-cards-wrap {
    position: relative;
    width: 480px;
    height: 460px;
}

.hero-card-main {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-height: 280px;
    overflow-y: auto;
}

.hc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hc-title {
    font-weight: 700;
    font-size: .95rem;
}

.match-badge {
    background: linear-gradient(135deg, var(--accent2), #059669);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

.hc-company {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.hc-company:last-child {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.hc-company .co-logo {
    flex-shrink: 0;
    margin-top: 2px;
}

.hc-company > div:nth-child(2) {
    flex: 1;
}

.hc-company > div:nth-child(2) > div:first-child {
    font-weight: 700;
    font-size: .85rem;
    line-height: 1.2;
}

.hc-company > div:nth-child(2) > small {
    color: var(--text3);
    font-size: .72rem;
}

.hc-company .match-badge {
    margin-left: auto;
    flex-shrink: 0;
}

.co-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
}

.co-info small {
    color: var(--text3);
    font-size: .75rem;
}

.hc-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.skill-chip {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
}

.skill-chip.match {
    background: #F0F0F0;
    color: #333;
}

.skill-chip.gap {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.hc-score-bar {
    background: #F0F0F0;
    border-radius: 50px;
    height: 6px;
    margin-bottom: 6px;
}

.hc-score-fill {
    height: 100%;
    border-radius: 50px;
    background: #111;
}

.hc-score-label {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--text3);
}

.hero-card-float {
    position: absolute;
    background: var(--card);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hcf-1 {
    top: 10px;
    left: 0;
    width: 180px;
}

.hcf-2 {
    bottom: 80px;
    right: 0;
    width: 160px;
}

.hcf-3 {
    bottom: 10px;
    left: 20px;
    width: 200px;
}

.hcf-4 {
    bottom: 80px;
    left: 0;
    width: 160px;
}

.hcf-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.hcf-label {
    font-size: .72rem;
    color: var(--text3);
}

.hcf-value {
    font-weight: 700;
    font-size: .88rem;
}


/* STATS BAND */

.stats-band {
    background: #F7F7F7;
    padding: 40px 48px;
    display: flex;
    justify-content: center;
    gap: 64px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.stat-label {
    font-size: .82rem;
    color: var(--text3);
    margin-top: 2px;
}


/* WHY SECTION */

.land-section {
    padding: 80px 48px;
}

.section-tag {
    display: inline-block;
    background: #F4F4F4;
    color: var(--text2);
    font-size: .72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    color: #111;
}

.section-desc {
    color: var(--text2);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    border-color: #ddd;
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
    background: #F4F4F4;
    color: #111;
}

.why-card h3 {
    font-weight: 700;
    font-size: .97rem;
    margin-bottom: 8px;
    color: #111;
}

.why-card p {
    color: var(--text2);
    font-size: .85rem;
    line-height: 1.65;
}


/* FEATURES SHOWCASE */

.features-showcase {
    background: #F7F7F7;
    padding: 80px 48px;
}

.feat-tabs {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feat-tab {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    color: var(--text2);
    transition: all var(--transition);
    background: #fff;
}

.feat-tab.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.feat-content {
    display: none;
    gap: 48px;
    align-items: center;
}

.feat-content.active {
    display: flex;
}

.feat-text {
    flex: 1;
}

.feat-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    color: #111;
}

.feat-text p {
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text2);
}

.feat-list li i {
    color: var(--accent2);
    width: 18px;
}

.feat-visual {
    flex: 1;
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    border: 1px solid var(--border);
}


/* MINI UI MOCKS */

.mini-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border);
}

.mini-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mini-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text3);
}

.mini-score {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
}

.mini-bar-wrap {
    background: #F0F0F0;
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
}

.mini-bar-fill {
    height: 100%;
    border-radius: 50px;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: .8rem;
}

.mini-row:last-child {
    border-bottom: none;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}


/* PRICING */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.price-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.price-card.featured {
    border-color: #050505;
    background: linear-gradient(160deg, #050505, #0f0f0f, #1aaea4);
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.price-card.featured .price-desc,
.price-card.featured .price-feature {
    color: rgba(255, 255, 255, .6);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent2);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.price-plan {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.price-desc {
    color: var(--text3);
    font-size: .82rem;
    margin-bottom: 20px;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
}

.price-period {
    font-size: .8rem;
    color: var(--text3);
    margin-bottom: 24px;
}

.price-card.featured .price-period {
    color: rgba(255, 255, 255, .5);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .86rem;
}

.price-feature i {
    color: var(--accent2);
}

.price-card.featured .price-feature i {
    color: rgba(255, 255, 255, .5);
}


/* TESTIMONIALS */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.testi-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    transform: translateY(-2px);
}

.testi-stars {
    color: var(--accent);
    font-size: .85rem;
    margin-bottom: 14px;
}

.testi-text {
    color: var(--text2);
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: .88rem;
}

.testi-role {
    font-size: .75rem;
    color: var(--text3);
}


/* CTA SECTION */

.cta-section {
    padding: 80px 48px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 50%, #1aaea4 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(186, 230, 253, 0.13) 0%, transparent 70%);
    top: -160px;
    right: -120px;
}

.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(75, 204, 190, 0.16) 0%, transparent 70%);
    bottom: -130px;
    left: -80px;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    opacity: .6;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}


/* FOOTER */

.land-footer {
    color: rgba(255, 255, 255, .45);
    padding: 48px;
    background: linear-gradient(160deg, #050505 0%, #0f0f0f 45%, #10958f 100%);
    position: relative;
    overflow: hidden;
}

.land-footer::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(186, 230, 253, 0.07) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.land-footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 240, 138, 0.07) 0%, transparent 70%);
    bottom: -160px;
    left: -100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand .land-logo {
    color: #fff;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: .84rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-size: .84rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    position: relative;
    z-index: 1;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background var(--transition);
    font-size: .85rem;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, .18);
}


/* ===================== APP SHELL ===================== */

.app-shell,
.app-shell-inner {
    display: flex;
    height: 100vh;
    overflow: hidden;
}


/* SIDEBAR */

.sidebar {
    width: var(--sidebar-w);
    min-width: var(--sidebar-w);
    background: linear-gradient(180deg, #050505 0%, #0b0b0b 36%, #0f4a47 52%, #0a1414 66%, #060606 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: width var(--transition), min-width var(--transition);
    position: relative;
    z-index: 50;
    flex-shrink: 0;
}

.sidebar-bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sidebar-bg-blobs::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(133, 233, 223, 0.16) 0%, transparent 72%);
    top: -70px;
    right: -60px;
}

.sidebar-bg-blobs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(73, 214, 199, 0.2) 0%, transparent 72%);
    top: 54%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.sidebar.collapsed {
    width: var(--sidebar-w-collapsed);
    min-width: var(--sidebar-w-collapsed);
}

.sb-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.sb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
    flex-shrink: 0;
    padding: 4px;
}

.sb-logo-text {
    display: inline-block;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    transition: opacity var(--transition), max-width var(--transition);
}

.sidebar.collapsed .sb-logo-text {
    opacity: 0;
    max-width: 0;
}

.sb-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.sb-toggle:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

.sidebar.collapsed .sb-toggle {
    transform: rotate(180deg);
}

.sb-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 0;
    position: relative;
    z-index: 10;
    min-height: 0;
}

.sb-nav::-webkit-scrollbar {
    width: 0;
}

.sb-section-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .25);
    padding: 14px 20px 6px;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.sidebar.collapsed .sb-section-label {
    opacity: 0;
}

.sb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 10px;
    margin: 2px 10px;
    text-decoration: none;
    color: rgba(214, 241, 237, .78);
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.sb-item:hover {
    background: rgba(111, 226, 214, .24);
    color: rgba(255, 255, 255, .9);
}

.sb-item.active {
    background: rgba(111, 226, 214, .32);
    color: #fff;
}

.sb-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, #b3f1ea, #4fd7c8);
    border-radius: 0 3px 3px 0;
}

.sb-item-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
}

.sb-item-text {
    display: inline-block;
    max-width: 170px;
    overflow: hidden;
    white-space: nowrap;
    font-size: .87rem;
    font-weight: 500;
    transition: opacity var(--transition), max-width var(--transition);
}

.sidebar.collapsed .sb-item-text {
    opacity: 0;
    max-width: 0;
}

.sidebar.collapsed .sb-item {
    justify-content: center;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
}

.sb-item-badge {
    margin-left: auto;
    background: var(--danger);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
    transition: opacity var(--transition);
}

.sidebar.collapsed .sb-item-badge {
    opacity: 0;
}

.sb-footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.sb-logout {
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.sb-logout:hover {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

.sb-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.sidebar.collapsed .sb-user {
    padding: 8px 0;
    border-color: transparent;
    background: transparent;
    justify-content: center;
}

.sb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #a4e8e1 0%, #63d2c6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
    color: #031515;
}

.sb-user-info {
    overflow: hidden;
    white-space: nowrap;
    max-width: 150px;
    transition: opacity var(--transition), max-width var(--transition);
}

.sb-user-name {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
}

.sb-user-role {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
}

.sidebar.collapsed .sb-user-info {
    opacity: 0;
    max-width: 0;
}


/* MAIN CONTENT AREA */

.main-content,
.main-area {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background: #F7F7F7;
    min-width: 0;
}


/* TOP BAR */

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 40;
    flex-shrink: 0;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
}

.topbar-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F7F7F7;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    width: 300px;
    transition: border-color var(--transition);
}

.topbar-search:focus-within {
    border-color: #111;
}

.topbar-search input {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: .86rem;
    color: var(--text);
    outline: none;
    width: 100%;
}

.topbar-search i {
    color: var(--text3);
    font-size: .85rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: visible;
}

.topbar-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    font-size: .88rem;
    transition: all var(--transition);
    position: relative;
}

.topbar-icon-btn:hover {
    border-color: #111;
    color: #111;
}

.notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #111;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.topbar-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    cursor: pointer;
}

.topbar-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
    margin: 0;
}

.topbar-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    font-size: .88rem;
    transition: all var(--transition);
}

.topbar-btn:hover {
    border-color: #111;
    color: #111;
}

.topbar-notification-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.topbar-notification-toggle {
    position: relative;
}

.topbar-notification-toggle.has-unread {
    border-color: #111;
    color: #111;
    background: #f8fafc;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.topbar-notif-badge {
    top: -6px;
    right: -6px;
    background: #111;
    min-width: 19px;
    width: auto;
    height: 19px;
    border-radius: 999px;
    padding: 0 5px;
    font-size: 0.62rem;
    line-height: 1;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.topbar-notification-toggle.has-unread .topbar-notif-badge {
    animation: topbarNotifPulse 1.6s ease-in-out infinite;
}

.topbar-dropdown-menu.topbar-notification-menu {
    width: min(420px, calc(100vw - 24px));
    min-width: min(420px, calc(100vw - 24px));
    max-width: min(420px, calc(100vw - 24px));
    padding: 0;
    overflow: hidden;
}

.topbar-notification-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
}

.topbar-notification-head-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.topbar-notification-head-main strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.35;
}

.topbar-notification-unread-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    letter-spacing: 0.01em;
}

.topbar-notification-mark-read {
    border: none;
    background: transparent;
    color: #111;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    line-height: 1.35;
    flex: 0 0 auto;
}

.topbar-notification-mark-read:hover {
    text-decoration: underline;
}

.topbar-notification-mark-read:disabled {
    color: #9ca3af;
    cursor: default;
    text-decoration: none;
}

.topbar-notification-list {
    max-height: 340px;
    overflow-y: auto;
}

.topbar-notification-list::-webkit-scrollbar {
    width: 8px;
}

.topbar-notification-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}

.topbar-notification-item {
    display: grid;
    gap: 4px;
    text-decoration: none;
    color: var(--text);
    padding: 12px 14px 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    position: relative;
}

.topbar-notification-item:hover {
    background: #f8fafc;
}

.topbar-notification-item.unread {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.01) 100%);
}

.topbar-notification-item.unread::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111;
}

.topbar-notification-item:last-child {
    border-bottom: none;
}

.topbar-notification-title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.38;
    margin: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.topbar-notification-message {
    font-size: 0.78rem;
    color: var(--text2);
    line-height: 1.45;
    margin: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.topbar-notification-time {
    font-size: 0.72rem;
    color: var(--text3);
    margin-top: 2px;
}

.topbar-notification-empty {
    padding: 16px 14px;
    font-size: 0.8rem;
    color: var(--text3);
    text-align: center;
}

@keyframes topbarNotifPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.topbar-profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.topbar-user {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: transform var(--transition);
}

.topbar-user:hover {
    transform: scale(1.05);
}

.topbar-user:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 50%;
}

.topbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    width: 220px;
    min-width: 220px;
    max-width: min(260px, calc(100vw - 24px));
    padding: 8px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 100;
}

.topbar-dropdown-menu.open {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.topbar-item-icon {
    width: 16px;
    text-align: center;
    color: #374151;
}

.topbar-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

.topbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.topbar-dropdown-item:hover {
    background: #f8fafc;
}

.topbar-dropdown-item.text-danger {
    color: var(--danger);
}

.topbar-dropdown-item.text-danger .topbar-item-icon {
    color: var(--danger);
}

.topbar-dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.08);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text2);
    cursor: pointer;
    padding: 4px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .topbar-dropdown-menu {
        right: 0;
        left: auto;
        top: calc(100% + 10px);
    }
    .topbar-dropdown-menu.topbar-notification-menu {
        width: min(380px, calc(100vw - 24px));
        min-width: min(380px, calc(100vw - 24px));
        max-width: min(380px, calc(100vw - 24px));
    }
}


/* PAGE CONTENT */

.page-content {
    padding: 28px;
    flex: 1;
}


/* CARDS GRID */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 24px;
}

.grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: none;
    border: 1px solid var(--border);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.card-title {
    font-weight: 700;
    font-size: 1rem;
}

.card-subtitle {
    font-size: .78rem;
    color: var(--text3);
    margin-top: 2px;
}

.card-action {
    font-size: .8rem;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}


/* STAT CARDS */

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.page-subtitle {
    color: var(--text2);
    font-size: .92rem;
    margin-top: 6px;
    background: linear-gradient(90deg, #1F2937, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.0rem;
    color: var(--text);
}

.name-gradient {
    background: linear-gradient(90deg, #000000, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(135deg, #0f172a 0%, #12b3ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    min-height: 140px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
    background: #162550;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.06;
    background: #162550;
}

.stat-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 2;
    flex: 1;
    align-items: flex-start;
    text-align: left;
}

.stat-card-icon {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    align-self: center;
    font-size: 2rem;
    background: rgba(139, 92, 246, 0.12);
    color: #10958f;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.stat-card:nth-child(1) .stat-card-icon {
    width: 130px !important;
    height: 130px !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -15px 0 -15px -15px;
}

.stat-card:nth-child(2) .stat-card-icon {
    width: 130px !important;
    height: 130px !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -15px 0 -15px -15px;
}

.stat-card:nth-child(3) .stat-card-icon {
    width: 130px !important;
    height: 130px !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -15px 0 -15px -15px;
}

.stat-card:nth-child(4) .stat-card-icon {
    width: 130px !important;
    height: 130px !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -15px 0 -15px -15px;
}

.stat-card:nth-child(1)::before {
    background: #1aaea4 !important;
}

.stat-card:nth-child(1)::after {
    background: #1aaea4 !important;
}

.stat-card:nth-child(2) .stat-card-icon {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.stat-card:nth-child(2) .stat-card-icon {
    width: 130px !important;
    height: 130px !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -15px 0 -15px -15px;
}

.stat-card:nth-child(2)::before {
    background: #138b84 !important;
}

.stat-card:nth-child(2)::after {
    background: #138b84 !important;
}

.stat-card:nth-child(3) .stat-card-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.stat-card:nth-child(3) .stat-card-icon {
    width: 130px !important;
    height: 130px !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -15px 0 -15px -15px;
}

.stat-card:nth-child(3)::before {
    background: #138b84 !important;
}

.stat-card:nth-child(3)::after {
    background: #138b84 !important;
}

.stat-card:nth-child(4) .stat-card-icon {
    background: rgba(6, 182, 212, 0.12);
    color: #06B6D4;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.stat-card:nth-child(4) .stat-card-icon {
    width: 130px !important;
    height: 130px !important;
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -15px 0 -15px -15px;
}

.stat-card:nth-child(4)::before {
    background: #6F42C1 !important;
}

.stat-card:nth-child(4)::after {
    background: #6F42C1 !important;
}

.employer-stat-postings .stat-card-icon {
    width: 200px !important;
    height: 200px !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 100%) !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -25px 0 -25px -25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.employer-stat-postings .stat-card-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.employer-stat-postings::before {
    background: #12b3ac !important;
}

.employer-stat-postings::after {
    background: #12b3ac !important;
}

.employer-stat-applicants .stat-card-icon {
    width: 200px !important;
    height: 200px !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 100%) !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -25px 0 -25px -25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.employer-stat-applicants .stat-card-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.employer-stat-applicants::before {
    background: #10B981 !important;
}

.employer-stat-applicants::after {
    background: #10B981 !important;
}

.employer-stat-interviews .stat-card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%) !important;
    color: #F59E0B !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2) !important;
}

.employer-stat-interviews::before {
    background: #F59E0B !important;
}

.employer-stat-interviews::after {
    background: #F59E0B !important;
}

.employer-stat-interviews .stat-card-icon {
    width: 200px !important;
    height: 200px !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 100%) !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -25px 0 -25px -25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.employer-stat-interviews .stat-card-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.employer-stat-hired .stat-card-icon {
    width: 200px !important;
    height: 200px !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 100%) !important;
    color: transparent !important;
    box-shadow: none !important;
    margin: -25px 0 -25px -25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.employer-stat-hired .stat-card-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.employer-stat-hired::before {
    background: #06B6D4 !important;
}

.employer-stat-hired::after {
    background: #06B6D4 !important;
}

.stat-card-num-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    justify-content: flex-end;
    width: 100%;
}

.stat-card-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    max-width: 180px;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: right;
}

.stat-card-label {
    font-size: .85rem;
    color: var(--text2);
    font-weight: 500;
    position: relative;
    z-index: 2;
    text-align: right;
    align-self: flex-end;
}

.stat-card-trend {
    font-size: .7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    white-space: nowrap;
    color: var(--accent2);
    justify-content: flex-end;
    align-self: flex-end;
    text-align: right;
}

.stat-card-trend.up {
    color: var(--accent2);
}

.stat-card-trend.neutral,
.neutral {
    color: var(--text3);
}

.stat-card .s-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.stat-card .s-label {
    font-size: .78rem;
    color: var(--text3);
    font-weight: 500;
}

.stat-card .s-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-card .s-delta {
    font-size: .75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.s-delta.up {
    color: var(--accent2);
}

.s-delta.down {
    color: var(--danger);
}

/* Requirements Stats */
.requirements-stats .stat-card {
    cursor: default;
}

.requirements-stats .req-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: none;
    background: transparent;
}

.requirements-stats .stat-card:nth-child(1) .req-stat-icon {
    background: linear-gradient(135deg, #12b3ac, #0a8a85);
}

.requirements-stats .stat-card:nth-child(2) .req-stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.requirements-stats .stat-card:nth-child(3) .req-stat-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.requirements-stats .stat-card:nth-child(4) .req-stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.requirements-stats .stat-card:nth-child(1)::before,
.requirements-stats .stat-card:nth-child(1)::after {
    background: #12b3ac !important;
}

.requirements-stats .stat-card:nth-child(2)::before,
.requirements-stats .stat-card:nth-child(2)::after {
    background: #f59e0b !important;
}

.requirements-stats .stat-card:nth-child(3)::before,
.requirements-stats .stat-card:nth-child(3)::after {
    background: #6366f1 !important;
}

.requirements-stats .stat-card:nth-child(4)::before,
.requirements-stats .stat-card:nth-child(4)::after {
    background: #10b981 !important;
}


/* JOB CARDS */

.feed-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.feed-main,
.feed-side {
    min-width: 0;
}

.job-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    transform: translateY(-1px);
}

.job-card.featured-job {
    border-color: #ddd;
    background: #fff;
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.job-card-info {
    flex: 1;
    min-width: 0;
}

.job-card-title {
    font-weight: 700;
    font-size: .98rem;
    margin-bottom: 2px;
}

.job-card-company {
    font-size: .82rem;
    color: var(--text2);
}

.job-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.job-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text2);
}

.job-card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.job-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    justify-content: flex-end;
}

.modern-job-card {
    display: flex;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    transition: all .2s ease;
    margin-bottom: 12px;
}

.modern-job-card:hover {
    border-color: #12b3ac;
    box-shadow: 0 4px 16px rgba(18, 179, 172, .12);
    transform: translateY(-1px);
}

.modern-job-card-left {
    flex-shrink: 0;
}

.modern-job-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(18, 179, 172, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #12b3ac;
}

.modern-job-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modern-job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-job-card-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin: 0;
}

.modern-job-card-status {
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.modern-job-card-status.status-active {
    background: rgba(34, 197, 94, .12);
    color: #22c55e;
}

.modern-job-card-status.status-pending {
    background: rgba(245, 158, 11, .12);
    color: #d97706;
}

.modern-job-card-status.status-closed {
    background: rgba(239, 68, 68, .12);
    color: #ef4444;
}

.modern-job-card-status.status-draft {
    background: rgba(107, 114, 128, .12);
    color: #6b7280;
}

.modern-job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.modern-job-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text2);
}

.modern-job-card-meta-item i {
    color: #12b3ac;
    font-size: .75rem;
}

.modern-job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.modern-job-card-time {
    font-size: .78rem;
    color: var(--text2);
}

.modern-job-card-actions {
    display: flex;
    gap: 8px;
}

.modern-job-card-empty {
    opacity: .85;
    background: linear-gradient(135deg, rgba(18, 179, 172, .03) 0%, rgba(18, 179, 172, .06) 100%);
    border-style: dashed;
}

.modern-job-card-empty:hover {
    opacity: 1;
}

.posting-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: all .2s ease;
}

.posting-card:hover {
    border-color: #12b3ac;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.posting-card-top {
    margin-bottom: 12px;
}

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

.posting-card-title {
    font-weight: 600;
    font-size: .95rem;
    color: #111;
}

.posting-card-badge {
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.badge-active {
    background: #dcfce7;
    color: #16a34a;
}

.badge-pending {
    background: #fef3c7;
    color: #d97706;
}

.badge-closed {
    background: #fee2e2;
    color: #dc2626;
}

.badge-draft {
    background: #f3f4f6;
    color: #6b7280;
}

.posting-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.posting-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: #6b7280;
}

.posting-meta i {
    font-size: .7rem;
    color: #12b3ac;
}

.posting-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    flex-wrap: wrap;
}

.posting-card-time {
    font-size: .75rem;
    color: #9ca3af;
}

.posting-card-actions {
    display: flex;
    gap: 8px;
}

.posting-card-actions .btn-outline {
    background: #000;
    border: 1.5px solid #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .8rem;
    text-decoration: none;
    transition: all .15s ease;
}

.posting-card-actions .btn-outline:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn-outline {
    background: #555;
    border: 1.5px solid #555;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .8rem;
    text-decoration: none;
    transition: all .15s ease;
}

.btn-outline:hover {
    background: #777;
    border-color: #777;
    color: #fff;
}

.posting-card-empty {
    background: #fafafa;
    border-style: dashed;
}

.job-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.job-card-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.job-card-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text2);
}

.job-card-bottom .job-card-actions {
    margin-top: 0;
}

.jc-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.jc-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.jc-info {
    flex: 1;
}

.jc-title {
    font-weight: 700;
    font-size: .97rem;
    margin-bottom: 4px;
}

.jc-company {
    font-size: .82rem;
    color: var(--text2);
}

.jc-match {
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-pct {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent2);
}

.match-label {
    font-size: .72rem;
    color: var(--text3);
}

.jc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.tag {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
}

.tag-blue {
    background: rgba(79, 70, 229, .1);
    color: #138b84;
}

.tag-teal {
    background: rgba(6, 182, 212, .1);
    color: var(--secondary);
}

.tag-green {
    background: rgba(16, 185, 129, .1);
    color: var(--accent2);
}

.tag-orange {
    background: rgba(245, 158, 11, .1);
    color: var(--accent);
}

.tag-red {
    background: rgba(239, 68, 68, .1);
    color: var(--danger);
}

.tag-gray {
    background: rgba(152, 152, 184, .1);
    color: var(--text3);
}

.jc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jc-meta {
    display: flex;
    gap: 14px;
}

.jc-meta span {
    font-size: .78rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.jc-actions {
    display: flex;
    gap: 8px;
}

.jc-btn {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: 'Poppins', sans-serif;
}

.jc-btn-primary {
    background: #111;
    color: #fff;
}

.jc-btn-primary:hover {
    background: #333;
}

.jc-btn-ghost {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text2);
}

.jc-btn-ghost:hover {
    border-color: #111;
    color: #111;
}


/* SIDEBAR PANELS */

.panel-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.panel-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.panel-card-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.panel-title {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 14px;
}


/* ADMIN ANALYTICS UI */

.admin-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.admin-hero {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 30%), linear-gradient(135deg, #050505 0%, #0e0e0e 42%, #17b3a9 100%);
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.admin-hero::before,
.admin-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.admin-hero::before {
    width: 340px;
    height: 340px;
    right: -120px;
    top: -140px;
    background: radial-gradient(circle, rgba(133, 233, 223, 0.3), transparent 68%);
}

.admin-hero::after {
    width: 280px;
    height: 280px;
    left: -80px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(73, 214, 199, 0.26), transparent 68%);
}

.admin-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr);
    gap: 24px;
    align-items: stretch;
}

.admin-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.86);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-hero-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    max-width: 12ch;
}

.admin-hero-text {
    margin-top: 14px;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: .98rem;
    line-height: 1.7;
}

.admin-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.admin-hero-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.admin-hero-actions .btn-ghost:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.admin-hero-actions .btn-primary {
    background: #f8fafc;
    color: #0f172a;
}

.admin-hero-actions .btn-primary:hover {
    background: #fff;
}

.admin-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.admin-highlight-card {
    min-height: 124px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(121, 207, 201, 0.22);
    border: 1px solid rgba(180, 235, 230, 0.28);
    backdrop-filter: blur(12px);
}

.admin-highlight-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: .76rem;
    font-weight: 600;
}

.admin-highlight-value {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.admin-highlight-note {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: .78rem;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.admin-stat-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--admin-accent, #111);
}

.admin-stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-stat-label {
    color: var(--text3);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--admin-accent, #111);
    background: var(--admin-accent-soft, rgba(17, 17, 17, 0.08));
    font-size: 1rem;
}

.admin-stat-value {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.admin-stat-note {
    margin-top: 8px;
    color: var(--text2);
    font-size: .82rem;
    line-height: 1.5;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.admin-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.admin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-card-title {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
}

.admin-card-copy {
    margin-top: 4px;
    color: var(--text2);
    font-size: .84rem;
    line-height: 1.6;
}

.admin-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-chip-card {
    padding: 16px;
    border-radius: 18px;
    background: var(--chip-bg, #f8fafc);
    border: 1px solid var(--chip-border, rgba(15, 23, 42, 0.06));
}

.admin-chip-value {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--chip-color, #111);
}

.admin-chip-label {
    margin-top: 8px;
    color: var(--text2);
    font-size: .8rem;
    font-weight: 600;
}

.admin-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-health-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.admin-health-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tone-bg, rgba(15, 23, 42, 0.06));
    color: var(--tone-color, #111);
}

.admin-health-label {
    font-size: .82rem;
    font-weight: 700;
    color: #111;
}

.admin-health-copy {
    margin-top: 3px;
    color: var(--text2);
    font-size: .77rem;
}

.admin-health-value {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-list-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admin-avatar,
.admin-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.admin-avatar {
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #06b6d4);
}

.admin-mark {
    background: linear-gradient(135deg, #0b0b0b, #334155);
}

.admin-list-title {
    font-size: .88rem;
    font-weight: 700;
    color: #111;
}

.admin-list-copy {
    margin-top: 4px;
    color: var(--text2);
    font-size: .77rem;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--badge-bg, rgba(15, 23, 42, 0.06));
    color: var(--badge-color, #111);
    font-size: .74rem;
    font-weight: 700;
    white-space: nowrap;
}

.admin-badge-subtle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--text2);
    font-size: .72rem;
    font-weight: 700;
}

.admin-bar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-bar-row {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin-bar-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: .82rem;
}

.admin-bar-label {
    color: #111;
    font-weight: 700;
}

.admin-bar-value {
    color: var(--text2);
    font-weight: 600;
}

.admin-bar-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #edf2f7;
}

.admin-bar-fill {
    height: 100%;
    border-radius: inherit;
    background: var(--fill, linear-gradient(90deg, #0b0b0b, #06b6d4));
}

.admin-columns-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
    gap: 10px;
    align-items: end;
    min-height: 180px;
}

.admin-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 8px;
    min-height: 180px;
}

.admin-column-value {
    font-size: .72rem;
    font-weight: 800;
    color: #0f766e;
}

.admin-column-bar {
    width: 100%;
    min-height: 16px;
    border-radius: 14px 14px 6px 6px;
    background: linear-gradient(180deg, #0b0b0b 0%, #0f766e 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.admin-column-label {
    font-size: .68rem;
    line-height: 1.4;
    text-align: center;
    color: var(--text3);
}

.admin-rank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-rank-row {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-rank-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admin-rank-number {
    width: 24px;
    text-align: center;
    color: var(--text3);
    font-size: .76rem;
    font-weight: 800;
}

.admin-rank-meta {
    min-width: 0;
}

.admin-rank-title {
    font-size: .86rem;
    font-weight: 700;
    color: #111;
}

.admin-rank-copy {
    margin-top: 4px;
    color: var(--text2);
    font-size: .76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-rank-stats {
    text-align: right;
}

.admin-rank-value {
    font-size: .86rem;
    font-weight: 800;
    color: #0b0b0b;
}

.admin-rank-note {
    margin-top: 4px;
    color: #0f766e;
    font-size: .72rem;
    font-weight: 700;
}

.admin-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 180px;
    text-align: center;
    color: var(--text3);
}

.admin-empty i {
    font-size: 2rem;
    color: #cbd5e1;
}


/* ADMIN UNIVERSITIES */

.univ-page {
    --univ-preview-a: #b91c1c;
    --univ-preview-b: #ef4444;
    --univ-preview-c: #fca5a5;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.univ-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.univ-page-title {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
}

.univ-page-copy {
    margin-top: 4px;
    color: var(--text3);
    font-size: .83rem;
}

.univ-filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.univ-search,
.univ-select {
    min-height: 46px;
    border-radius: 16px;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.univ-search {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}

.univ-search i {
    color: var(--text3);
}

.univ-search input {
    width: 100%;
    border: none;
    outline: none;
    font: inherit;
    color: #111;
    background: transparent;
}

.univ-select {
    min-width: 220px;
    padding: 0 16px;
    font: inherit;
    color: #111;
    outline: none;
}

.univ-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.univ-card {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    transition: transform .24s ease, box-shadow .24s ease;
}

.univ-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

.univ-card-cover {
    position: relative;
    height: 70px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--univ-a, #0b0b0b), var(--univ-b, #0f766e), var(--univ-c, #67e8f9));
}

.univ-card-cover::before,
.univ-card-cover::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.univ-card-cover::before {
    width: 84px;
    height: 84px;
    right: -14px;
    bottom: -26px;
}

.univ-card-cover::after {
    width: 62px;
    height: 62px;
    left: -10px;
    top: -20px;
}

.univ-card-top {
    position: absolute;
    top: 12px;
    left: 16px;
    right: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.univ-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(5px);
}

.univ-cover-meta {
    min-width: 0;
    flex: 1;
    padding-top: 2px;
}

.univ-cover-abbr {
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.univ-cover-region {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: .68rem;
}

.univ-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.univ-card-body {
    padding: 18px;
}

.univ-name {
    font-size: .88rem;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
}

.univ-region-copy {
    margin-top: 4px;
    color: var(--text3);
    font-size: .74rem;
}

.univ-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.univ-stat-box {
    text-align: center;
    padding: 10px 6px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.univ-stat-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--univ-color, #111);
    line-height: 1;
}

.univ-stat-label {
    margin-top: 6px;
    color: var(--text3);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.univ-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.univ-card-actions .jc-btn,
.univ-card-actions .btn {
    justify-content: center;
}

.univ-card-actions .btn,
.univ-card-actions .jc-btn {
    min-height: 38px;
}

.univ-card-actions .grow {
    flex: 1;
}

.univ-empty {
    padding: 54px 24px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px dashed rgba(15, 23, 42, 0.12);
    color: var(--text3);
}

.univ-empty i {
    font-size: 2.3rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.univ-mini-preview {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.univ-mini-header {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    background: linear-gradient(135deg, var(--univ-preview-a), var(--univ-preview-b), var(--univ-preview-c));
}

.univ-mini-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
}

.univ-mini-name {
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
}

.univ-mini-body {
    display: flex;
    height: 76px;
    background: #fafafa;
}

.univ-mini-side {
    width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    background: linear-gradient(160deg, #3b0000, #5c0a0a);
}

.univ-mini-side span {
    width: 22px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.34);
}

.univ-mini-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.univ-mini-bar {
    width: 72%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--univ-preview-a), var(--univ-preview-b));
}

.univ-mini-line {
    height: 4px;
    border-radius: 999px;
    background: #e5e7eb;
}

.univ-mini-actions {
    display: flex;
    gap: 6px;
}

.univ-mini-actions span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: .55rem;
    font-weight: 700;
}

.univ-mini-actions .primary {
    color: #fff;
    background: linear-gradient(135deg, var(--univ-preview-a), var(--univ-preview-b));
}

.univ-mini-actions .tag {
    color: var(--univ-preview-a);
    background: rgba(17, 24, 39, 0.06);
}

.univ-toast-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* PROFILE COMPLETENESS */

.profile-complete-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0 16px;
}

.ring-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.ring-wrap svg {
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: #F0F0F0;
    stroke-width: 6;
}

.ring-fill {
    fill: none;
    stroke: url(#ringGrad);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 44;
    transition: stroke-dashoffset 1s ease;
}

.ring-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #111;
}

.complete-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
}

.cs-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    flex-shrink: 0;
}

.cs-check.done {
    background: var(--accent2);
    color: #fff;
}

.cs-check.todo {
    background: var(--border);
    color: var(--text3);
}


/* SKILL BARS */

.skill-bar-item {
    margin-bottom: 12px;
}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    margin-bottom: 5px;
}

.skill-bar-header span:first-child {
    font-weight: 600;
}

.skill-bar-header span:last-child {
    color: var(--text3);
}

.skill-bar-bg {
    background: #F0F0F0;
    border-radius: 50px;
    height: 6px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 50px;
}


/* APPLICATIONS TABLE */

.app-table {
    width: 100%;
    border-collapse: collapse;
}

.app-table th {
    text-align: left;
    padding: 10px 14px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text3);
    border-bottom: 1.5px solid var(--border);
}

.app-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    font-size: .86rem;
    vertical-align: middle;
}

.app-table tr:hover td {
    background: rgba(0, 0, 0, .02);
}

.app-table tr:last-child td {
    border-bottom: none;
}

.status-pill {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
}

.status-pending {
    background: rgba(245, 158, 11, .1);
    color: var(--accent);
}

.status-shortlisted {
    background: rgba(6, 182, 212, .1);
    color: var(--secondary);
}

.status-waitlisted {
    background: rgba(8, 145, 178, .12);
    color: #0E7490;
}

.status-interview {
    background: rgba(79, 70, 229, .1);
    color: #000000;
}

.status-accepted {
    background: rgba(16, 185, 129, .1);
    color: var(--accent2);
}

.status-rejected {
    background: rgba(239, 68, 68, .1);
    color: var(--danger);
}


/* PROGRESS BARS */

.progress-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.pr-label {
    font-size: .8rem;
    width: 120px;
    flex-shrink: 0;
    color: var(--text2);
}

.pr-bar {
    flex: 1;
    background: #F0F0F0;
    border-radius: 50px;
    height: 7px;
    overflow: hidden;
}

.pr-fill {
    height: 100%;
    border-radius: 50px;
}

.pr-val {
    font-size: .78rem;
    font-weight: 700;
    width: 36px;
    text-align: right;
    color: var(--text2);
}


/* CHAT */

.chat-wrap {
    display: flex;
    flex-direction: column;
    height: 380px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px;
    margin-bottom: 14px;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.chat-msg {
    max-width: 78%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: .86rem;
    line-height: 1.55;
}

.chat-msg.bot {
    background: #F4F4F4;
    color: var(--text);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-msg.user {
    background: #111;
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chat-input-row {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 10px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: .86rem;
    outline: none;
    transition: border-color var(--transition);
}

.chat-input:focus {
    border-color: #111;
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.chat-send:hover {
    background: #333;
    transform: scale(1.05);
}


/* TIMELINE */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 12px;
    padding: 0 0 14px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.timeline-content {
    min-width: 0;
}

.tl-item {
    display: flex;
    gap: 14px;
    padding-bottom: 20px;
    position: relative;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-item:last-child .tl-line {
    display: none;
}

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.tl-line {
    position: absolute;
    left: 5px;
    top: 16px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.tl-content {
    flex: 1;
}

.tl-title {
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 4px;
}

.tl-desc {
    font-size: .8rem;
    color: var(--text3);
}


/* HOUR TRACKER */

.hour-log {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-entry {
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.he-info {
    display: block;
}

.he-date {
    font-size: .75rem;
    color: var(--text3);
    margin-bottom: 2px;
}

.he-task {
    font-size: .86rem;
    font-weight: 600;
}

.he-hours {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #111;
}


/* EMPLOYER CARDS */

.candidate-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
}

.candidate-card:hover {
    border-color: #ccc;
    box-shadow: var(--card-shadow);
}

.cc-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}

.cc-name {
    font-weight: 700;
    font-size: .95rem;
}

.cc-dept {
    font-size: .78rem;
    color: var(--text3);
}

.cc-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-score-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
}

.cc-score-label {
    font-size: .72rem;
    color: var(--text3);
}

.cc-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}


/* EVALUATION */

.eval-criteria {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eval-label {
    font-size: .86rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.eval-stars {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.eval-stars i {
    font-size: 1.6rem;
    color: #e5e7eb;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.eval-stars i:hover {
    transform: scale(1.15);
}

.eval-stars i.fas.fa-star {
    color: #12b3ac;
}


/* EVALUATIONS GRID LAYOUT */

.eval-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    align-items: start;
}

.eval-main {
    min-width: 0;
}

.eval-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* EVALUATION FORM */

.eval-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eval-form-row {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 16px;
}

.eval-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.eval-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.01em;
}

.eval-form-input {
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    background: #ffffff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.eval-form-input:focus {
    outline: none;
    border-color: #12b3ac;
    box-shadow: 0 0 0 3px rgba(18,179,172,0.08);
}

select.eval-form-input {
    cursor: pointer;
    appearance: auto;
}

.eval-recommendation-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf9;
    border-color: #ccfbf1;
    color: #0d9488;
    font-weight: 600;
}

.eval-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.eval-form-actions {
    display: flex;
    gap: 8px;
    padding-top: 4px;
}


/* EVALUATION CRITERIA GRID */

.eval-criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.eval-criterion {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    gap: 4px;
}

.eval-score-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    margin-top: 2px;
    min-height: 18px;
}

.eval-score-label.rated {
    color: #12b3ac;
}

.eval-recommendation-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.eval-recommendation-option {
    display: flex;
    width: 100%;
    cursor: pointer;
}

.eval-recommendation-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.eval-recommendation-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    background: #ffffff;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: all 0.18s ease;
}

.eval-recommendation-option.danger span {
    border-color: #fee2e2;
    color: #b91c1c;
}

.eval-recommendation-option input:checked + span {
    background: #ecfdf5;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.eval-recommendation-option.danger input:checked + span {
    background: #fef2f2;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}


/* EVALUATION TABLE */

.eval-intern-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eval-intern-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #12b3ac, #0f7a74);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.eval-score {
    color: #12b3ac;
    font-weight: 600;
    font-size: 0.85rem;
}

.eval-score i {
    font-size: 0.7rem;
    margin-right: 2px;
}

.eval-overall {
    font-weight: 700;
    font-size: 0.9rem;
}

.eval-overall.outstanding {
    color: #10b981;
}

.eval-overall.good {
    color: #12b3ac;
}

.eval-overall.fair {
    color: #f59e0b;
}

.eval-overall.needs-improvement {
    color: #ef4444;
}

.eval-period-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: #f0fdf9;
    color: #0d9488;
    font-size: 0.72rem;
    font-weight: 600;
}

.eval-recommendation-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.eval-recommendation-badge.recommended {
    background: #ecfdf5;
    color: #047857;
}

.eval-recommendation-badge.not-recommended {
    background: #fef2f2;
    color: #b91c1c;
}

.eval-summary-cell {
    max-width: 280px;
}

.eval-summary-text {
    display: block;
    color: #4b5563;
    font-size: 0.8rem;
    line-height: 1.4;
}

.eval-summary-text.attention {
    color: #b91c1c;
    font-weight: 600;
}

.eval-summary-text.clear {
    color: #047857;
    font-weight: 600;
}

.eval-feedback {
    max-width: 200px;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.4;
}

.eval-date {
    font-size: 0.82rem;
    color: #6b7280;
    white-space: nowrap;
}

.eval-empty {
    text-align: center;
    padding: 40px 20px !important;
}

.eval-empty-icon {
    font-size: 2.5rem;
    color: #d1d5db;
    margin-bottom: 12px;
}

.eval-empty-text {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.eval-empty-sub {
    color: #9ca3af;
    font-size: 0.82rem;
}


/* EVALUATION SIDEBAR */

.eval-filter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eval-filter-actions {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.eval-rating-guide {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eval-guide-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.eval-guide-stars {
    display: flex;
    gap: 3px;
    color: #12b3ac;
    font-size: 0.75rem;
}

.eval-guide-stars i.far.fa-star {
    color: #d1d5db;
}

.eval-guide-label {
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 500;
}


/* PANEL CARD HEADER ACTIONS */

.panel-card-header-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}


/* RESPONSIVE */

@media (max-width: 1024px) {
    .eval-grid {
        grid-template-columns: 1fr;
    }

    .eval-side {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .eval-side .panel-card {
        flex: 1;
        min-width: 240px;
    }

    .eval-criteria-grid {
        grid-template-columns: 1fr;
    }

    .eval-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .eval-side {
        flex-direction: column;
    }
}


/* ANALYTICS */

.dept-bar-item {
    margin-bottom: 14px;
}

.dept-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: .84rem;
}

.dept-bar-header span:first-child {
    font-weight: 600;
}

.dept-bar-bg {
    background: #F0F0F0;
    border-radius: 50px;
    height: 10px;
    overflow: hidden;
}

.dept-bar-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #06B6D4, #10B981);
    transition: width 1s ease;
}


/* TABS */

.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: .86rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text3);
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    transition: all var(--transition);
}

.tab-btn.active {
    color: #111;
    border-bottom-color: #111;
}


/* FILTER ROW */

.filter-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-select {
    padding: 9px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
}

.filter-select:focus {
    border-color: #111;
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    background: #fff;
    transition: border-color var(--transition);
}

.filter-search:focus-within {
    border-color: #111;
}

.filter-search input {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
    outline: none;
    width: 200px;
}


/* FORM */

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-input,
.form-textarea,
.form-select2 {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select2:focus {
    border-color: #111;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* UPLOAD ZONE */

.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.upload-zone:hover {
    border-color: #111;
    background: #FAFAFA;
}

.upload-zone i {
    font-size: 2rem;
    color: var(--text3);
    margin-bottom: 10px;
    display: block;
}

.upload-zone p {
    font-size: .86rem;
    color: var(--text2);
}

.upload-zone span {
    font-size: .78rem;
    color: var(--text3);
}


/* SCORE GAUGE */

.score-gauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
}

.gauge-circle {
    width: 100px;
    height: 100px;
    position: relative;
    margin-bottom: 10px;
}

.gauge-circle svg {
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: #F0F0F0;
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.gauge-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gauge-num .gn-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.gauge-num .gn-label {
    font-size: .62rem;
    color: var(--text3);
}

.gauge-title {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 4px;
}

.gauge-desc {
    font-size: .78rem;
    color: var(--text3);
    text-align: center;
}


/* COMPANY CARD */

.company-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comp-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
}

.comp-name {
    font-weight: 700;
}

.comp-industry {
    font-size: .78rem;
    color: var(--text3);
}

.comp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, .1);
    color: var(--accent2);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.comp-badge i {
    font-size: .65rem;
}

.comp-stats {
    display: flex;
    gap: 16px;
}

.comp-stat {
    text-align: center;
}

.comp-stat-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.comp-stat-label {
    font-size: .7rem;
    color: var(--text3);
}


/* TOAST */

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    border-left: 4px solid #111;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .86rem;
    animation: slideInToast .3s ease;
    pointer-events: all;
    max-width: 340px;
}

@keyframes slideInToast {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast i {
    font-size: 1rem;
}

.toast.success {
    border-color: var(--accent2);
}

.toast.success i {
    color: var(--accent2);
}

.toast.warning {
    border-color: var(--accent);
}

.toast.warning i {
    color: var(--accent);
}


/* HELPERS */

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-4 {
    margin-top: 16px;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.text-muted {
    color: var(--text3);
    font-size: .82rem;
}

.text-sm {
    font-size: .84rem;
}

.font-bold {
    font-weight: 700;
}

.text-primary {
    color: var(--text);
}

.text-success {
    color: var(--accent2);
}

.text-warning {
    color: var(--accent);
}

.text-danger {
    color: var(--danger);
}


/* ANIMATIONS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp .4s ease forwards;
}


/* BAR CHART */

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    padding: 0 4px;
}

.bar-item {
    flex: 1;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
    min-height: 8px;
}


/* DONUT LEGEND */

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
}

.dl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dl-val {
    margin-left: auto;
    font-weight: 700;
}


/* MODULE COMPATIBILITY UTILITIES */

.cards-grid,
.company-grid,
.info-grid {
    display: grid;
    gap: 16px;
}

.cards-grid,
.company-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.info-item {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}

.info-label {
    font-size: .75rem;
    color: var(--text3);
    margin-bottom: 4px;
}

.info-value {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
}

.app-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.candidate-header,
.company-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.alert-banner,
.success-banner,
.error-msg {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: .85rem;
    border: 1px solid transparent;
}

.alert-banner,
.error-msg {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .25);
    color: #b91c1c;
}

.success-banner {
    background: rgba(16, 185, 129, .09);
    border-color: rgba(16, 185, 129, .25);
    color: #047857;
}

.btn-dark {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.btn-dark:hover {
    background: #333;
    border-color: #333;
}

.btn-outline {
    background: #fff;
    color: var(--text2);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: #111;
    color: #111;
}

.btn-red {
    background: var(--danger);
    color: #fff;
    border: 1px solid var(--danger);
}

.btn-red:hover {
    filter: brightness(.95);
}

.form-control,
.search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color var(--transition);
}

.form-control:focus,
.search-input:focus {
    border-color: #111;
}

.progress-bar,
.dept-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #F0F0F0;
    overflow: hidden;
}

.progress-fill,
.pwd-strength-fill {
    height: 100%;
    border-radius: 999px;
    background: #111;
}

.avatar-placeholder,
.profile-avatar-lg {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #050505, #0f0f0f);
}

.profile-avatar-lg {
    width: 72px;
    height: 72px;
    font-size: 1.2rem;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    font-size: .9rem;
}

.chat-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 12px;
    background: #F4F4F4;
    color: var(--text);
    font-size: .85rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    transition: background-color .2s ease, border-color .2s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
    transition: transform .2s ease;
}

.toggle-switch input:checked + .toggle-slider {
    background: #06b6d4;
    border-color: #0891b2;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: .6;
    cursor: not-allowed;
}

.status-badge,
.badge-active,
.badge-pending {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
}

.badge-active {
    background: rgba(16, 185, 129, .1);
    color: #047857;
}

.badge-pending {
    background: rgba(245, 158, 11, .12);
    color: #b45309;
}

.page-sub {
    color: var(--text2);
    font-size: .9rem;
}

.score-gauge-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.skill-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.skill-entry:last-child {
    border-bottom: none;
}

.profile-add-skill-form {
    padding: 10px;
    border: 1px dashed var(--border);
    border-radius: 10px;
    background: #fcfcfc;
}

.profile-page .feed-layout {
    align-items: start;
}

.profile-page .panel-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

.profile-page .panel-card-header h3 {
    font-size: 1.02rem;
}

.profile-page .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-page .skill-bar-item:last-child {
    margin-bottom: 0;
}

.profile-resume-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 30, .45);
    backdrop-filter: blur(2px);
    z-index: 120;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
    padding: 22px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 800;
}

.modal-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text2);
    cursor: pointer;
}

.modal-close:hover {
    color: #111;
    border-color: #bbb;
}

.ojt-log-modal {
    width: 100%;
    max-width: 560px;
    margin: 0;
    padding: 24px;
}

.ojt-log-modal-header {
    margin-bottom: 16px;
}

.ojt-log-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ojt-field {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ojt-field label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.ojt-log-modal .form-control {
    margin: 0;
}

.ojt-file-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.ojt-file-input:hover {
    border-color: #d1d5db;
}

.ojt-file-input:focus-within {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.ojt-file-input.has-file {
    background: #f8fafc;
    border-color: #c7d2fe;
}

.ojt-file-native {
    display: none !important;
}

.ojt-file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.ojt-file-btn:hover {
    background: #333;
    border-color: #333;
}

.ojt-file-btn:active {
    transform: translateY(1px);
}

.ojt-file-name {
    font-size: .82rem;
    color: var(--text3);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.ojt-submit-btn {
    align-self: flex-start;
    margin-top: 2px;
}

.ojt-file-input.has-file .ojt-file-name {
    color: #334155;
    font-weight: 600;
}

@media (max-width: 640px) {
    .ojt-log-modal {
        max-width: 100%;
        padding: 18px;
    }
    .ojt-file-input {
        flex-wrap: wrap;
    }
    .ojt-submit-btn {
        width: 100%;
        justify-content: center;
    }
}


/* MOBILE OVERLAY */

.overlay,
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 49;
}

.overlay.active,
.mobile-overlay.active {
    display: block;
}


/* RESPONSIVE */

@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-hero-grid,
    .admin-grid-2,
    .admin-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .univ-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .feed-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .land-nav {
        padding: 0 20px;
    }
    .land-nav-links {
        display: none;
    }
    .land-hero {
        padding: 80px 20px;
        flex-direction: column;
    }
    .hero-visual {
        display: none;
    }
    .stats-band {
        flex-wrap: wrap;
        gap: 32px;
        padding: 32px 20px;
    }
    .land-section {
        padding: 48px 20px;
    }
    .why-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .feat-content.active {
        flex-direction: column;
    }
    .features-showcase {
        padding: 48px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform .3s;
        z-index: 100;
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .grid-2-1,
    .grid-1-2 {
        grid-template-columns: 1fr;
    }
    .stat-cards {
        grid-template-columns: 1fr;
    }
    .admin-hero {
        padding: 22px;
        border-radius: 22px;
    }
    .admin-hero-grid,
    .admin-highlight-grid,
    .admin-grid-2,
    .admin-stat-grid,
    .admin-chip-grid {
        grid-template-columns: 1fr;
    }
    .univ-page-head,
    .univ-filter-row,
    .univ-grid,
    .univ-stat-row,
    .univ-card-actions {
        grid-template-columns: 1fr;
    }
    .univ-grid,
    .univ-stat-row {
        display: grid;
    }
    .univ-card-actions {
        display: flex;
        flex-wrap: wrap;
    }
    .univ-select,
    .univ-search {
        width: 100%;
    }
    .admin-card,
    .admin-stat-card {
        padding: 18px;
        border-radius: 20px;
    }
    .admin-card-header,
    .admin-health-row,
    .admin-list-item,
    .admin-rank-row {
        grid-template-columns: 1fr;
    }
    .admin-list-item,
    .admin-rank-row {
        gap: 10px;
    }
    .admin-rank-stats {
        text-align: left;
    }
    .job-card-meta {
        gap: 10px;
    }
    .job-card-actions {
        flex-wrap: wrap;
    }
    .profile-page .info-grid {
        grid-template-columns: 1fr;
    }
    .modal {
        padding: 16px;
    }
    .feed-layout {
        grid-template-columns: 1fr;
    }
    .topbar-search {
        display: none;
    }
    .page-content {
        padding: 16px;
    }
}


/* Unified typography override */

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.page-title,
.card-title,
.auth-form-title,
.pf-modal-head-title,
.market-modal-title {
    font-weight: 600 !important;
    line-height: var(--line-height-heading) !important;
}

label,
th,
.page-sub,
.page-subtitle,
.auth-form-sub,
.auth-label {
    font-weight: 500 !important;
}

p,
li,
td,
input,
select,
textarea,
small,
.small {
    font-weight: 400;
    line-height: var(--line-height-base);
}

button,
[type="button"],
[type="submit"],
.btn,
.auth-submit-btn,
.pf-save-btn,
.pf-cancel-btn,
.market-action-btn {
    font-weight: 600 !important;
}


/* Student module consistency (aligned with dashboard visual system) */

body.role-student {
    color: var(--text);
}

body.role-student .page-content {
    padding: 24px;
}

body.role-student .page-header {
    margin-bottom: 22px;
}

body.role-student .page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}

body.role-student .name-gradient {
    font-weight: 900;
}

body.role-student .page-subtitle {
    font-size: .95rem;
    font-weight: 500;
    margin-top: 6px;
    color: var(--text2);
}

body.role-student .panel-card,
body.role-student .card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px;
}

body.role-student .panel-card,
body.role-student .card,
body.role-student .job-card,
body.role-student .pf-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 62%, #f1f6fb 100%);
}

body.role-student .panel-card-header,
body.role-student .card-header {
    margin-bottom: 14px;
}

body.role-student .panel-card-header h3,
body.role-student .card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

body.role-student .mini-row,
body.role-student .job-card-meta span,
body.role-student .job-card-company,
body.role-student .job-card-stats span {
    color: var(--text2);
    font-size: .84rem;
}

body.role-student .btn {
    border-radius: 999px;
    min-height: 38px;
    padding: 0 16px;
    font-size: .86rem;
    font-weight: 700;
}

body.role-student .btn.btn-sm {
    min-height: 38px;
    padding: 0 16px;
    font-size: .84rem;
}

body.role-student .btn-primary {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

body.role-student .btn-primary:hover {
    background: #0b0b0b;
    border-color: #0b0b0b;
}

body.role-student .btn-ghost {
    background: #ffffff;
    border-color: #D1D5DB;
    color: #0b0b0b;
}

body.role-student .btn-ghost:hover {
    background: #F8FAFC;
    border-color: #9CA3AF;
}

body.role-student .feed-main .panel-card {
    padding: 24px;
}

body.role-student .feed-main .panel-card-header h3 {
    font-size: 1.15rem;
}

body.role-student .feed-main .job-feed {
    gap: 18px;
}

body.role-student .feed-main .job-card {
    padding: 22px;
    border-radius: 18px;
}

body.role-student .feed-main .job-card-actions .btn.btn-sm {
    min-height: 40px;
    min-width: 124px;
    padding: 0 14px;
    font-size: .88rem;
    justify-content: center;
}

body.role-student .feed-main .job-card-actions .btn.btn-sm[aria-label] {
    min-height: 40px;
    min-width: 40px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    body.role-student .page-content {
        padding: 16px;
    }
    body.role-student .page-title {
        font-size: 1.6rem;
    }
    body.role-student .topbar {
        height: auto;
        min-height: 58px;
        padding: 10px 14px;
        gap: 10px;
    }
    body.role-student .topbar-left {
        min-width: 0;
        gap: 10px;
    }
    body.role-student .topbar-title {
        max-width: 48vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 1rem;
    }
    body.role-student .topbar-right {
        gap: 8px;
        flex-shrink: 0;
    }
    body.role-student .topbar-btn,
    body.role-student .topbar-user,
    body.role-student .topbar-avatar {
        width: 36px;
        height: 36px;
    }
    body.role-student .page-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    body.role-student .page-header > div {
        min-width: 0;
    }
    body.role-student .page-header .btn,
    body.role-student .page-header select,
    body.role-student .page-header .form-control {
        width: 100%;
        justify-content: center;
    }
    body.role-student .page-subtitle {
        font-size: .86rem;
        line-height: 1.55;
    }
    body.role-student .student-dashboard-hero {
        padding: 20px 16px !important;
        gap: 16px !important;
        margin-bottom: 16px !important;
    }
    body.role-student .student-dashboard-hero h2 {
        font-size: 1.28rem !important;
        line-height: 1.35 !important;
    }
    body.role-student .student-dashboard-hero p {
        font-size: .88rem !important;
    }
    body.role-student .student-dashboard-hero a {
        flex: 1 1 150px;
        justify-content: center;
    }
    body.role-student .panel-card,
    body.role-student .card {
        padding: 16px;
        border-radius: 14px;
    }
    body.role-student .panel-card-header,
    body.role-student .card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    body.role-student .panel-card-header .btn,
    body.role-student .card-header .btn,
    body.role-student .panel-card-header .filter-row {
        width: 100%;
    }
    body.role-student .filter-row,
    body.role-student .filter-select,
    body.role-student .filter-search,
    body.role-student .filter-search input {
        width: 100%;
        max-width: none;
    }
    body.role-student .stat-cards {
        gap: 12px;
        margin-bottom: 16px;
    }
    body.role-student .stat-card {
        min-height: 112px;
        padding: 16px;
        gap: 10px;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    }
    body.role-student .stat-card:hover {
        transform: none;
    }
    body.role-student .stat-card .stat-card-icon,
    body.role-student .stat-card:nth-child(1) .stat-card-icon,
    body.role-student .stat-card:nth-child(2) .stat-card-icon,
    body.role-student .stat-card:nth-child(3) .stat-card-icon,
    body.role-student .stat-card:nth-child(4) .stat-card-icon {
        width: 82px !important;
        height: 82px !important;
        margin: -8px 0 -8px -10px !important;
    }
    body.role-student .stat-card-num {
        max-width: 130px;
        font-size: 2.25rem;
    }
    body.role-student .stat-card-label {
        font-size: .78rem;
    }
    body.role-student .stat-card-trend {
        max-width: 100%;
        white-space: normal;
        line-height: 1.25;
    }
    body.role-student .feed-main .panel-card {
        padding: 16px;
    }
    body.role-student .feed-main .job-card {
        padding: 16px;
        border-radius: 14px;
    }
    body.role-student .job-card-header,
    body.role-student .jc-top {
        align-items: flex-start;
    }
    body.role-student .job-card-bottom,
    body.role-student .jc-bottom {
        align-items: stretch;
        flex-direction: column;
    }
    body.role-student .job-card-actions,
    body.role-student .jc-actions,
    body.role-student .modern-job-card-actions {
        width: 100%;
        justify-content: stretch;
    }
    body.role-student .job-card-actions .btn,
    body.role-student .jc-actions .btn,
    body.role-student .modern-job-card-actions .btn,
    body.role-student .feed-main .job-card-actions .btn.btn-sm {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
    }
    body.role-student .job-card-meta,
    body.role-student .job-card-stats,
    body.role-student .jc-meta,
    body.role-student .modern-job-card-meta {
        gap: 8px;
    }
    body.role-student .job-card-meta span,
    body.role-student .job-card-stats span,
    body.role-student .jc-meta span,
    body.role-student .modern-job-card-meta-item {
        overflow-wrap: anywhere;
    }
    body.role-student .modern-job-card {
        flex-direction: column;
    }
    body.role-student .modal-overlay,
    body.role-student .pf-overlay,
    body.role-student .market-overlay,
    body.role-student .market-success-overlay,
    body.role-student .app-progress-overlay {
        padding: 12px;
        align-items: flex-start;
        overflow-y: auto;
    }
    body.role-student .modal,
    body.role-student .pf-modal-box,
    body.role-student .market-modal,
    body.role-student .market-success-card,
    body.role-student .app-progress-modal {
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100vh - 24px);
        border-radius: 14px;
    }
    body.role-student .modal-header,
    body.role-student .pf-modal-head,
    body.role-student .market-modal-head,
    body.role-student .app-progress-head {
        gap: 10px;
    }
    body.role-student .modal-title,
    body.role-student .pf-modal-head-title,
    body.role-student .market-modal-title,
    body.role-student .app-progress-title {
        overflow-wrap: anywhere;
    }
    body.role-student .app-table-wrap {
        overflow: visible;
    }
    body.role-student .app-table,
    body.role-student .app-table tbody,
    body.role-student .app-table tr,
    body.role-student .app-table td {
        display: block;
        width: 100%;
    }
    body.role-student .app-table thead {
        display: none;
    }
    body.role-student .app-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 12px;
    }
    body.role-student .app-table tr {
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
        margin-bottom: 12px;
    }
    body.role-student .app-table td {
        display: grid !important;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
        padding: 12px 14px;
        border-bottom: 1px solid #eef2f7;
        text-align: left !important;
    }
    body.role-student .app-table td:last-child {
        border-bottom: 0;
    }
    body.role-student .app-table td::before {
        content: attr(data-label);
        color: var(--text3);
        font-size: .72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .04em;
        padding-top: 4px;
    }
    body.role-student .app-table td[colspan] {
        display: block !important;
        text-align: center !important;
    }
    body.role-student .app-table td[colspan]::before {
        display: none;
    }
    body.role-student .app-table td[data-label="Action"] {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }
    body.role-student .app-table td[data-label="Action"]::before {
        flex: 0 0 100%;
        padding: 0;
    }
    body.role-student .app-table td[data-label="Action"] .btn,
    body.role-student .app-table td[data-label="Action"] form {
        flex: 1 1 120px;
    }
    body.role-student .app-table td[data-label="Action"] form .btn {
        width: 100%;
    }
}
