/* --- NoticePeriodCalculator Styles --- */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #F4F7FC;
      --surface:   #FFFFFF;
      --border:    #E2E8F0;
      --border-light: #EDF2F7;
      --primary:   #0969C3;
      --primary-lt:#EAF3FC;
      --primary-dk:#0756A1;
      --blue:      #0969C3;
      --blue-lt:   #EAF3FC;
      --green:     #22B472;
      --green-hover: #1b9b60;
      --text-h:    #0F1825;
      --text-b:    #3C4858;
      --text-muted:#5F6C84;
      --text-sub:  #94a3b8;
      --danger:    #EF4444;
      --warn:      #F59E0B;
      --warn-lt:   #FFFBEB;
      --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
      --shadow-lg: 0 15px 35px rgba(9, 105, 195, 0.08), 0 3px 12px rgba(0, 0, 0, 0.03);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text-b);
      min-height: 100vh;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      padding-bottom: 60px;
    }

    /* ── PAGE LAYOUT ── */
    .page {
      max-width: 1240px;
      margin: 110px auto 0 auto;
      padding: 0 24px 80px;
    }
    @media (max-width: 992px) {
      .page { margin-top: 100px; }
    }

    /* ── HERO ── */
    .hero {
      text-align: center;
      margin-bottom: 40px;
    }
    .hero-chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--primary-lt); color: var(--primary);
      font-size: 12px; font-weight: 600;
      padding: 5px 14px; border-radius: 20px;
      margin-bottom: 16px;
      letter-spacing: 0.3px;
    }
    .hero-chip i { font-size: 11px; }
    .hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--text-h);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }
    .hero h1 span { color: var(--primary); }
    .hero p {
      font-size: 16px; font-weight: 400;
      color: var(--text-muted);
      max-width: 540px; margin: 0 auto;
    }

    /* ── CONTENT GRID ── */
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 390px;
      gap: 24px;
      align-items: start;
    }
    @media (max-width: 960px) {
      .content-grid { grid-template-columns: 1fr; }
      .sticky-col { position: static !important; }
    }
    .sticky-col { position: sticky; top: 110px; }

    /* ── CARD ── */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
    .card-header {
      padding: 20px 24px 0;
    }
    .card-title {
      font-size: 14px; font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.6px;
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 18px;
    }
    .card-title i { color: var(--primary); font-size: 13px; }
    .card-body { padding: 20px 24px 24px; }

    /* ── FORM ELEMENTS ── */
    .form-group { margin-bottom: 20px; }
    .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }

    label {
      display: block;
      font-size: 13px; font-weight: 600;
      color: var(--text-b);
      margin-bottom: 7px;
    }
    label .opt { font-weight: 400; color: var(--text-sub); font-size: 11px; margin-left: 4px; }

    input[type="text"],
    input[type="number"],
    input[type="date"],
    select, textarea {
      width: 100%;
      font-family: 'Poppins', sans-serif;
      font-size: 14px; font-weight: 400;
      color: var(--text-h);
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 11px 14px;
      outline: none;
      transition: var(--transition);
      appearance: none;
    }
    input:focus, select:focus, textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(20,107,84,.12);
    }
    input::placeholder { color: var(--text-sub); }
    .input-icon-wrap { position: relative; }
    .input-icon-wrap i {
      position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
      color: var(--text-sub); font-size: 13px; pointer-events: none;
    }
    .input-icon-wrap input { padding-left: 38px; }

    /* ── QUICK CHIPS ── */
    .chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
    .chip {
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 500;
      color: var(--text-muted);
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 50px;
      padding: 7px 18px;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-lt); }
    .chip.active {
      background: var(--primary); border-color: var(--primary); color: #fff;
      font-weight: 600;
    }
    .chip-custom input {
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 500;
      color: var(--text-h);
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 50px;
      padding: 7px 14px;
      width: 140px;
      outline: none;
      transition: var(--transition);
    }
    .chip-custom input:focus { border-color: var(--primary); background: var(--primary-lt); }

    /* ── CALC METHOD TABS ── */
    .method-tabs { display: flex; gap: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1.5px solid var(--border); }
    .method-tab {
      flex: 1; padding: 10px 12px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 500;
      background: var(--surface); color: var(--text-muted);
      border: none; cursor: pointer;
      transition: var(--transition);
      display: flex; align-items: center; justify-content: center; gap: 7px;
    }
    .method-tab:first-child { border-right: 1.5px solid var(--border); }
    .method-tab:hover { background: var(--bg); color: var(--text-b); }
    .method-tab.active { background: var(--primary); color: #fff; font-weight: 600; }
    .method-tab.active i { color: #fff; }
    .method-tab i { color: var(--text-sub); font-size: 12px; }

    /* ── WORKING DAYS GRID ── */
    .wd-grid { display: flex; flex-wrap: wrap; gap: 8px; }
    .wd-option {
      font-family: 'Poppins', sans-serif;
      font-size: 12px; font-weight: 600;
      color: var(--text-muted);
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 8px 14px;
      cursor: pointer;
      transition: var(--transition);
      display: flex; flex-direction: column; align-items: center; gap: 2px;
    }
    .wd-option span.n { font-size: 18px; font-weight: 700; color: var(--text-h); }
    .wd-option span.l { font-size: 10px; color: var(--text-sub); }
    .wd-option:hover { border-color: var(--primary); background: var(--primary-lt); }
    .wd-option.active { border-color: var(--primary); background: var(--primary-lt); color: var(--primary); }
    .wd-option.active span.n { color: var(--primary); }
    .wd-option.active span.l { color: var(--primary); }

    /* ── DIVIDER ── */
    .divider { height: 1px; background: var(--border); margin: 0 24px; }

    /* ── RESULT CARD ── */
    .result-hero {
      background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      padding: 28px 28px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .result-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .result-hero .label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
    .result-hero .date-big { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 4px; }
    .result-hero .basis-tag { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 500; }
    .result-hero .placeholder { font-size: 1.4rem; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: 1px; }

    .result-body { padding: 20px 24px 24px; }

    /* Countdown Ring */
    .countdown-wrap {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; margin-bottom: 20px;
    }
    .countdown-ring {
      position: relative; width: 88px; height: 88px; flex-shrink: 0;
    }
    .countdown-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
    .countdown-ring .track { fill: none; stroke: var(--border); stroke-width: 7; }
    .countdown-ring .progress { fill: none; stroke: var(--green); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 251.2; transition: stroke-dashoffset 0.5s ease; }
    .countdown-ring .center-text {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-weight: 700; line-height: 1;
    }
    .countdown-ring .center-text .num { font-size: 22px; color: var(--text-h); }
    .countdown-ring .center-text .lbl { font-size: 9px; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.5px; }
    .countdown-info h3 { font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 4px; }
    .countdown-info p  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

    /* Stats grid */
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
    .stat-box {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 14px;
    }
    .stat-box .s-label { font-size: 11px; font-weight: 500; color: var(--text-sub); margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
    .stat-box .s-val   { font-size: 22px; font-weight: 800; color: var(--text-h); }
    .stat-box .s-sub   { font-size: 11px; color: var(--text-sub); margin-top: 2px; }
    .stat-box.highlight { background: var(--primary-lt); border-color: rgba(20,107,84,.2); }
    .stat-box.highlight .s-label { color: var(--primary); }
    .stat-box.highlight .s-val   { color: var(--primary); }

    /* Timeline */
    .timeline {
      position: relative; display: flex; align-items: center;
      justify-content: space-between; padding: 0 8px; margin-bottom: 18px;
    }
    .timeline::before {
      content: '';
      position: absolute; top: 12px; left: 30px; right: 30px;
      height: 2px; background: var(--border);
    }
    .tl-fill {
      position: absolute; top: 12px; left: 30px;
      height: 2px; background: linear-gradient(90deg, var(--primary), var(--green));
      transition: width 0.5s ease; width: 0%;
    }
    .tl-node { display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 1; }
    .tl-dot {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--surface); border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 9px;
    }
    .tl-dot.filled { border-color: var(--primary); background: var(--primary); color: #fff; }
    .tl-dot.end    { border-color: var(--green); background: var(--green); color: #fff; }
    .tl-lbl { font-size: 10px; font-weight: 500; color: var(--text-sub); text-align: center; max-width: 70px; }
    .tl-date { font-size: 11px; font-weight: 700; color: var(--text-b); text-align: center; max-width: 80px; }

    /* Weekend Warning */
    .warn-box {
      background: var(--warn-lt);
      border: 1.5px solid rgba(245,158,11,.3);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      margin-bottom: 16px;
      display: none;
    }
    .warn-box .warn-title { font-size: 13px; font-weight: 600; color: #92400E; display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
    .warn-options { display: flex; gap: 8px; flex-wrap: wrap; }
    .warn-option {
      flex: 1; min-width: 130px;
      background: var(--surface); border: 1.5px solid rgba(245,158,11,.35);
      border-radius: var(--radius-sm); padding: 10px 12px;
      cursor: pointer; transition: var(--transition);
    }
    .warn-option:hover { border-color: var(--warn); background: var(--warn-lt); }
    .warn-option .wo-lbl { font-size: 10px; font-weight: 600; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
    .warn-option .wo-date { font-size: 13px; font-weight: 700; color: var(--text-h); }

    /* Congrats Banner */
    .congrats-banner {
      background: linear-gradient(135deg, #E8F5F1 0%, #D1FAE5 100%);
      border: 1.5px solid rgba(34,180,114,.2);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      display: none;
      align-items: center; gap: 10px; margin-bottom: 16px;
    }
    .congrats-banner i { color: var(--green); font-size: 18px; flex-shrink: 0; }
    .congrats-banner p { font-size: 13px; font-weight: 500; color: #065F46; line-height: 1.4; }

    /* CTA */
    .share-btn {
      width: 100%;
      background: var(--primary-lt);
      color: var(--primary);
      border: 1.5px solid rgba(20,107,84,.2);
      border-radius: var(--radius-sm);
      padding: 11px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 600;
      cursor: pointer; transition: var(--transition);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .share-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    /* ── FAQ / INFO ── */
    .info-section { margin-top: 36px; }
    .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
    .info-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px;
    }
    .info-card .ic-icon {
      width: 40px; height: 40px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; margin-bottom: 12px;
    }
    .info-card h4 { font-size: 14px; font-weight: 700; color: var(--text-h); margin-bottom: 6px; }
    .info-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

    /* ── EMPTY STATE ── */
    .empty-state {
      text-align: center; padding: 36px 20px;
    }
    .empty-state i { font-size: 2.5rem; color: var(--border); margin-bottom: 12px; display: block; }
    .empty-state p { font-size: 13px; color: var(--text-sub); }

    /* ── TOOLTIP ── */
    .has-tip { position: relative; }
    .has-tip .tip { font-size: 10px; color: var(--text-sub); font-weight: 400; display: inline-flex; align-items: center; gap: 3px; margin-left: 4px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .nav-badge { display: none; }
      .hero h1 { font-size: 1.6rem; }
      .page { padding: 20px 1rem 60px; }
    }
  

/* --- ScoreReport Styles --- */
:root {
            --cohire-blue: #0969C3;
            --cohire-blue-hover: #0756a1;
            --cohire-green: #22B472;
            --cohire-green-hover: #1b9b60;
            --bg-layout: #F4F7FC;
            --bg-card: #FFFFFF;
            --text-title: #0F1825;
            --text-body: #3C4858;
            --text-secondary: #5F6C84;
            --border-color: #E2E8F0;
            --border-light: #EDF2F7;
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
            --shadow-hover: 0 15px 35px rgba(9, 105, 195, 0.08), 0 3px 12px rgba(0, 0, 0, 0.03);
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-layout);
            color: var(--text-body);
            line-height: 1.6;
            min-height: 100vh;
            padding-bottom: 60px;
        }

        /* Header Navigation matching coHire */
        .cohire-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 75px;
            background-color: var(--bg-card);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .header-container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cohire-logo-img {
            height: 38px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .cohire-logo-img:hover {
            opacity: 0.9;
        }

        .header-badge-pill {
            background: rgba(9, 105, 195, 0.08);
            border: 1px solid rgba(9, 105, 195, 0.15);
            color: var(--cohire-blue);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .header-badge-dot {
            width: 8px;
            height: 8px;
            background-color: var(--cohire-blue);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-blue 2s infinite;
        }

        @keyframes pulse-blue {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(9, 105, 195, 0.5);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(9, 105, 195, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(9, 105, 195, 0);
            }
        }

        /* Main Page Layout Wrapper */
        .page-wrapper {
            max-width: 1240px;
            margin: 110px auto 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 30px;
        }

        @media (max-width: 992px) {
            .page-wrapper {
                grid-template-columns: 1fr;
                margin-top: 100px;
            }
        }

        /* Left Column Profile Sidebar Card */
        .profile-sidebar {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow-soft);
            height: fit-content;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
            position: sticky;
            top: 110px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: var(--transition-smooth);
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
        }

        .profile-sidebar::-webkit-scrollbar {
            width: 4px;
        }
        .profile-sidebar::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 4px;
        }

        .profile-sidebar:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .candidate-avatar-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cohire-blue) 0%, var(--cohire-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 16px;
            box-shadow: 0 4px 10px rgba(9, 105, 195, 0.2);
        }

        .candidate-name {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-title);
            text-align: center;
            margin-bottom: 4px;
        }

        .candidate-source-file {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-align: center;
            background-color: var(--bg-layout);
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid var(--border-light);
            word-break: break-all;
            margin-bottom: 24px;
            max-width: 100%;
        }

        /* Custom Concentric SVG Score Ring */
        .score-ring-container {
            position: relative;
            width: 160px;
            height: 160px;
            margin-bottom: 20px;
        }

        .score-ring-svg {
            width: 100%;
            height: 100%;
        }

        .score-ring-bg {
            fill: none;
            stroke: var(--border-light);
            stroke-width: 8px;
        }

        .score-ring-fill {
            fill: none;
            stroke: #D97706;
            stroke-width: 8px;
            stroke-linecap: round;
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
            transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .score-ring-center-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .score-ring-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-title);
            line-height: 1;
        }

        .score-ring-max {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        .score-ring-pct {
            font-size: 0.75rem;
            font-weight: 600;
            color: #D97706;
            background-color: rgba(217, 119, 6, 0.08);
            padding: 2px 8px;
            border-radius: 10px;
            display: inline-block;
            margin-top: 4px;
        }

        /* Rating status badge */
        .rating-badge {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 6px 18px;
            border-radius: 30px;
            margin-bottom: 24px;
            display: inline-block;
            text-align: center;
        }

        .rating-excellent {
            background-color: rgba(34, 180, 114, 0.08);
            border: 1px solid rgba(34, 180, 114, 0.25);
            color: var(--cohire-green);
        }

        .rating-very-good {
            background-color: rgba(9, 105, 195, 0.08);
            border: 1px solid rgba(9, 105, 195, 0.25);
            color: var(--cohire-blue);
        }

        .rating-good {
            background-color: rgba(217, 119, 6, 0.08);
            border: 1px solid rgba(217, 119, 6, 0.25);
            color: var(--text-title);
        }

        .rating-needs-imp {
            background-color: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.25);
            color: #EF4444;
        }

        /* Contact Details list */
        .contact-details-box {
            width: 100%;
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-row {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.88rem;
        }

        .contact-icon-box {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background-color: var(--bg-layout);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cohire-blue);
            flex-shrink: 0;
        }

        .contact-icon-box svg {
            width: 16px;
            height: 16px;
        }

        .contact-value-text {
            color: var(--text-title);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-weight: 500;
        }

        /* Highlights capsule grid */
        .highlights-grid {
            width: 100%;
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .highlight-item-card {
            background-color: var(--bg-layout);
            border: 1px solid var(--border-light);
            border-radius: 10px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .highlight-lbl {
            font-size: 0.7rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 2px;
        }

        .highlight-val {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-title);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 100%;
        }

        .highlight-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 4px;
            margin-top: 4px;
        }

        .highlight-badge.bg-green {
            background-color: rgba(34, 180, 114, 0.1);
            color: var(--cohire-green);
        }

        .highlight-badge.bg-gray {
            background-color: rgba(95, 108, 132, 0.1);
            color: var(--text-secondary);
        }

        .highlight-svg {
            width: 12px;
            height: 12px;
        }

        /* Right Column Main Dashboard Content */
        .main-dashboard {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Recruiter Assessment Callout Card */
        .recruiter-assessment-card {
            background-color: #F0F7FF;
            border-left: 5px solid var(--cohire-blue);
            border-radius: 12px;
            padding: 24px;
            position: relative;
            box-shadow: var(--shadow-soft);
        }

        .assessment-section-tag {
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--cohire-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .assessment-quote-text {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-title);
            line-height: 1.6;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .assessment-quote-icon {
            position: absolute;
            right: 20px;
            bottom: 10px;
            font-size: 5rem;
            color: rgba(9, 105, 195, 0.05);
            font-family: Georgia, serif;
            line-height: 1;
            user-select: none;
            z-index: 1;
        }

        /* Dashboard Section Card structure */
        .dashboard-section-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow-soft);
        }

        .dashboard-section-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 12px;
        }

        .section-title-svg {
            width: 20px;
            height: 20px;
            color: var(--cohire-blue);
        }

        /* Category Breakdown Cards Grid */
        .categories-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .categories-grid {
                grid-template-columns: 1fr;
            }
        }

        .category-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            transition: var(--transition-smooth);
        }

        .category-card:hover {
            border-color: var(--border-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
        }

        .category-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .category-card-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-title);
        }

        .category-card-score {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--cohire-blue);
        }

        .category-card-pct {
            font-weight: 500;
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        /* ===== Unified Career Timeline ===== */
        .timeline-container {
            width: 100%;
            overflow-x: auto;
            padding: 20px 0 16px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--border-color) transparent;
        }
        .timeline-container::-webkit-scrollbar { height: 4px; }
        .timeline-container::-webkit-scrollbar-track { background: transparent; }
        .timeline-container::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 2px; }

        .timeline-track {
            display: flex;
            align-items: center;
            min-width: max-content;
            width: 100%;
            position: relative;
        }

        /* Each proportional segment wraps: label-above / bar / label-below */
        .timeline-segment {
            position: relative;
            display: grid;
            grid-template-rows: 90px 14px 90px;
            align-items: center;
            min-width: 110px;
        }

        /* The colored bar strip */
        .timeline-segment-bar {
            grid-row: 2;
            width: 100%;
            height: 14px;
            border-radius: 7px;
        }

        /* Large circle node centered vertically on the bar, anchored at start of segment */
        .timeline-node {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--bg-card);
            border: 3px solid currentColor;
            z-index: 3;
            box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
        }

        /* Terminal end-cap node (very last right edge) */
        .timeline-end-node {
            position: relative;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--bg-card);
            border: 3px solid var(--cohire-green);
            flex-shrink: 0;
            box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
            z-index: 3;
        }

        /* Label blocks */
        .timeline-label-above {
            grid-row: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            text-align: center;
            padding: 0 6px 8px 6px;
            overflow: hidden;
        }

        .timeline-label-below {
            grid-row: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
            padding: 8px 6px 0 6px;
            overflow: hidden;
        }

        .timeline-label-empty { visibility: hidden; }

        .timeline-title {
            font-size: 0.72rem;
            font-weight: 700;
            line-height: 1.25;
            word-break: break-word;
            overflow-wrap: break-word;
            max-width: 120px;
        }

        .timeline-company {
            font-size: 0.64rem;
            color: var(--text-secondary);
            line-height: 1.3;
            word-break: break-word;
            overflow-wrap: break-word;
            max-width: 120px;
            margin-top: 1px;
        }

        .timeline-dates {
            font-size: 0.62rem;
            color: var(--text-secondary);
            line-height: 1.3;
            margin-top: 4px;
        }
        .timeline-dates-present {
            font-size: 0.62rem;
            font-weight: 700;
            color: var(--cohire-green);
            line-height: 1.3;
        }

        /* Legend row below timeline */
        .timeline-legend {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 14px;
            flex-wrap: wrap;
        }
        .timeline-legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.7rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .timeline-legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid currentColor;
            background: var(--bg-card);
        }

        .category-progress-track {
            height: 8px;
            background-color: var(--border-light);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .category-progress-bar {
            height: 100%;
            border-radius: 4px;
            transition: width 1s ease-out;
        }

        .category-card-detail {
            font-size: 0.78rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* Strengths layout cards */
        .strengths-grid-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .strength-card {
            background-color: rgba(34, 180, 114, 0.03);
            border: 1px solid rgba(34, 180, 114, 0.08);
            border-radius: 10px;
            padding: 16px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .strength-icon-container {
            background-color: rgba(34, 180, 114, 0.1);
            color: var(--cohire-green);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .strength-svg-icon {
            width: 18px;
            height: 18px;
        }

        .strength-card-content {
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-title);
        }

        /* Recommendations layout cards */
        .recs-grid-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .rec-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
            transition: var(--transition-smooth);
        }

        .rec-card:hover {
            border-color: rgba(9, 105, 195, 0.25);
            box-shadow: 0 4px 16px rgba(9, 105, 195, 0.03);
        }

        .rec-issue-section {
            display: flex;
            gap: 16px;
            padding: 16px;
            background-color: rgba(217, 119, 6, 0.02);
            border-bottom: 1px solid var(--border-light);
            align-items: flex-start;
        }

        .rec-issue-icon {
            color: var(--text-secondary);
            background-color: var(--border-light);
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .rec-issue-icon svg {
            width: 16px;
            height: 16px;
        }

        .rec-issue-text {
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-title);
        }

        .rec-fix-section {
            padding: 16px 16px 16px 64px;
            background-color: #F8FAFE;
            border-left: 3px solid var(--cohire-blue);
        }

        @media (max-width: 576px) {
            .rec-fix-section {
                padding-left: 16px;
            }
        }

        .rec-fix-badge {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--cohire-blue);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 4px;
            display: inline-block;
        }

        .rec-fix-text {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Quantifiable Metrics Card and highlights */
        .metrics-summary-container {
            display: flex;
            gap: 24px;
        }

        @media (max-width: 768px) {
            .metrics-summary-container {
                flex-direction: column;
            }
        }

        .metric-badge-count {
            background: linear-gradient(135deg, rgba(9, 105, 195, 0.05) 0%, rgba(34, 180, 114, 0.05) 100%);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            width: 150px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .metric-badge-count {
                width: 100%;
            }
        }

        .metric-count-num {
            font-size: 3rem;
            font-weight: 800;
            color: var(--cohire-blue);
            line-height: 1;
        }

        .metric-count-lbl {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 8px;
        }

        .metric-details-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .metrics-description-info {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .metric-examples-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .metric-example-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 0.88rem;
            color: var(--text-title);
            background-color: var(--bg-layout);
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
        }

        .metric-bullet-icon {
            width: 16px;
            height: 16px;
            color: var(--cohire-green);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .metric-example-text {
            font-weight: 500;
        }

        /* Empty states */
        .empty-feedback-text {
            font-size: 0.92rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        /* Footer matching coHire site colors */
        .cohire-footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .footer-brand {
            color: var(--cohire-blue);
            font-weight: 600;
            text-decoration: none;
        }


/* --- StaffingCalculator Styles --- */

    :root {
        --cohire-blue: #0969C3;
        --cohire-blue-hover: #0756a1;
        --cohire-green: #22B472;
        --title-dark: #0b1a3a;
    }

    /* ── Hero Section ── */
    .pxp-page-header-simple {
        background-color: #e6f0f9;
        padding: 40px 0;
    }

    /* ── Form Card ── */
    .npc-form-col {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }

    .form-label {
        font-weight: 600;
        color: var(--title-dark);
        font-size: 0.9rem;
    }

    /* Hide Number Input Spin Buttons */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    input[type=number] {
        -moz-appearance: textfield;
    }

    /* ── Mode Toggle ── */
    .mode-toggle-group {
        display: flex;
        gap: 12px;
        margin-bottom: 1.5rem;
    }
    .mode-toggle-btn {
        flex: 1;
        background: #f1f5f9;
        border: 2px solid transparent;
        color: #64748b;
        font-weight: 600;
        padding: 12px;
        border-radius: 10px;
        transition: all 0.2s;
        cursor: pointer;
    }
    .mode-toggle-btn:hover {
        background: #e2e8f0;
        color: #334155;
    }
    .mode-toggle-btn.active {
        background: rgba(9,105,195,0.08);
        border-color: var(--cohire-blue);
        color: var(--cohire-blue);
    }

    /* ── Expenses Column ── */
    .cost-column {
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
    }

    .cost-column-header {
        padding: 14px 18px;
        font-weight: 600;
        font-size: 0.92rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e2e8f0;
        background: rgba(9,105,195,0.04);
        color: var(--title-dark);
    }
    
    .header-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .summary-icon {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 1rem;
        background: rgba(9,105,195,0.1); 
        color: var(--cohire-blue);
    }
    
    .subtotal-badge {
        font-size: 0.78rem;
        background: #fff;
        border: 1px solid #cbd5e1;
        padding: 3px 12px;
        border-radius: 20px;
        color: #64748b;
        font-weight: 600;
        white-space: nowrap;
    }

    .cost-item-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1px solid #f1f5f9;
        gap: 12px;
        transition: background 0.15s;
    }
    .cost-item-row:last-child { border-bottom: none; }
    .cost-item-row:hover { background: #f8fafc; }

    .btn-add {
        background-color: var(--cohire-blue);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 500;
        margin: 12px 16px;
        cursor: pointer;
        transition: all 0.2s;
    }
    .btn-add:hover { background-color: var(--cohire-blue-hover); }

    .btn-remove {
        color: #ef4444;
        background: rgba(239, 68, 68, 0.1);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }
    .btn-remove:hover { background: rgba(239, 68, 68, 0.2); }

    /* ── Results Card ── */
    .staffing-results-col {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }

    .results-table {
        width: 100%;
        margin-bottom: 1rem;
    }
    .results-table th, .results-table td {
        padding: 12px 8px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
    }
    .results-table th {
        color: #64748b;
        font-weight: 600;
        text-align: right;
        text-transform: uppercase;
        font-size: 0.75rem;
    }
    .results-table td {
        text-align: right;
        font-weight: 500;
        color: var(--title-dark);
    }
    .results-table th:first-child, .results-table td:first-child {
        text-align: left;
    }

    .total-row-highlight td {
        background-color: #f1f5f9;
        font-weight: 800 !important;
        color: var(--title-dark) !important;
    }
    .total-row-highlight {
        border-top: 2px solid #cbd5e1;
        border-bottom: 2px solid #cbd5e1;
    }

    .final-result-box {
        background: rgba(9,105,195,0.06);
        border: 1px solid rgba(9,105,195,0.2);
        border-radius: 10px;
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    .final-result-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
    }
    .final-result-row .period {
        color: #64748b;
        font-size: 0.85rem;
        font-weight: 600;
    }
    .final-result-row .value {
        color: var(--cohire-blue);
        font-size: 1.1rem;
        font-weight: 800;
    }
    .negative-margin { color: #ef4444 !important; }
    .positive-margin { color: var(--cohire-green) !important; }

    /* ── Recommendations Panel (ScoreReport Style) ── */
    .recommendations-panel {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        margin-top: 2rem;
    }
    
    .rec-card-v3 { 
        border: 1px solid var(--border-color, #e2e8f0); 
        border-radius: 10px; 
        background-color: #fff; 
        margin-bottom: 18px; 
        overflow: hidden; 
        box-shadow: 0 1px 3px rgba(0,0,0,0.04); 
    }
    .rec-header-v3 { 
        display: flex; 
        align-items: center; 
        gap: 12px; 
        padding: 16px 18px; 
        background-color: #FAFBFC; 
        border-bottom: 1px solid var(--border-light, #f1f5f9); 
    }
    .rec-icon-v3 { 
        width: 32px; 
        height: 32px; 
        border-radius: 8px; 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        flex-shrink: 0; 
    }
    .rec-icon-v3.info { background-color: #EEF2FF; color: var(--cohire-blue); }
    .rec-icon-v3.warn { background-color: #FEF2F2; color: #ef4444; }
    .rec-header-text-v3 { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; flex: 1; }
    .rec-badge-v3 { 
        font-size: 0.7rem; 
        font-weight: 700; 
        padding: 3px 8px; 
        border-radius: 4px; 
        text-transform: uppercase; 
        letter-spacing: 0.3px; 
    }
    .rec-badge-v3.info { background-color: #E0E7FF; color: #3730A3; }
    .rec-badge-v3.warn { background-color: #FEE2E2; color: #991B1B; }
    .rec-issue-title-v3 { font-size: 0.92rem; color: #0F172A; font-weight: 600; line-height: 1.3; }
    .rec-fix-v3 { padding: 14px 18px; background-color: #F8FAFF; }
    .rec-fix-v3.info { border-left: 4px solid var(--cohire-blue); }
    .rec-fix-v3.warn { border-left: 4px solid #ef4444; background-color: #FEF2F2; }
    .rec-fix-title-v3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.5px; }
    .rec-fix-title-v3.info { color: var(--cohire-blue); }
    .rec-fix-title-v3.warn { color: #ef4444; }
    .rec-fix-text-v3 { color: #334155; font-size: 0.88rem; line-height: 1.5; font-weight: 500; }



/* --- CostPerHireCalculator Styles --- */

    /* Remove scroll arrows for number inputs */
    input[type=number]::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none; 
        margin: 0; 
    }
    input[type=number] {
        -moz-appearance: textfield;
    }


/* --- ScoreReport Styles --- */

                    .categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 16px; }
                    .category-card { background-color: #F8FAFC; border: 1px solid var(--border-light); border-radius: 8px; padding: 16px; }
                    .category-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
                    .category-card-name { font-weight: 700; font-size: 0.95rem; color: #0F172A; }
                    .category-card-score { font-weight: 800; font-size: 1.1rem; }
                    .category-progress-track { width: 100%; height: 6px; background-color: #E2E8F0; border-radius: 4px; overflow: hidden; margin-bottom: 12px; }
                    .category-progress-bar { height: 100%; border-radius: 4px; }
                    .category-card-detail { font-size: 0.8rem; color: #64748B; line-height: 1.4; }
                    

                        .timeline-container-v2 { width: 100%; overflow-x: auto; padding: 70px 0 80px 0; scrollbar-width: thin; scrollbar-color: var(--border-color) transparent; }
                        .timeline-container-v2::-webkit-scrollbar { height: 6px; }
                        .timeline-container-v2::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
                        .timeline-track-v2 { display: flex; align-items: center; min-width: max-content; padding: 0 24px; }
                        .timeline-segment-v2 { position: relative; min-width: 200px; display: flex; align-items: center; justify-content: center; }
                        .timeline-bar-v2 { width: 100%; height: 10px; border-radius: 5px; }
                        .timeline-node-v2 { position: absolute; width: 18px; height: 18px; background-color: #fff; border: 3px solid #0F172A; border-radius: 50%; z-index: 2; left: 50%; transform: translateX(-50%); box-shadow: 0 0 0 3px rgba(15,23,42,0.1); }
                        .timeline-line-v2 { position: absolute; width: 2px; background-color: #94A3B8; z-index: 1; left: 50%; }
                        .timeline-line-v2.up { bottom: 9px; height: 40px; }
                        .timeline-line-v2.down { top: 9px; height: 40px; }
                        .timeline-text-v2 { position: absolute; left: 50%; transform: translateX(-50%); text-align: center; width: 170px; line-height: 1.3; }
                        .timeline-text-v2.up { bottom: 54px; }
                        .timeline-text-v2.down { top: 54px; }
                        .timeline-title-v2 { font-weight: 700; font-size: 0.78rem; color: #0F172A; margin-bottom: 2px; white-space: normal; word-wrap: break-word; }
                        .timeline-sub-v2 { font-size: 0.7rem; color: #475569; margin-bottom: 1px; font-weight: 500; white-space: normal; word-wrap: break-word; }
                        .timeline-date-v2 { font-size: 0.68rem; color: #94A3B8; white-space: pre-line; font-weight: 500; }
                        

                        .rec-card-v3 { border: 1px solid var(--border-color); border-radius: 10px; background-color: #fff; margin-bottom: 18px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
                        .rec-header-v3 { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; background-color: #FAFBFC; border-bottom: 1px solid var(--border-light); }
                        .rec-icon-v3 { background-color: #EEF2FF; color: var(--cohire-blue); width: 32px; height: 32px; border-radius: 8px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
                        .rec-header-text-v3 { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; flex: 1; }
                        .rec-badge-v3 { background-color: #E0E7FF; color: #3730A3; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; }
                        .rec-issue-title-v3 { font-size: 0.92rem; color: #0F172A; font-weight: 600; line-height: 1.4; word-wrap: break-word; flex: 1; min-width: 0; }
                        .rec-evidence-v3 { padding: 14px 18px; background-color: #fff; border-bottom: 1px solid var(--border-light); overflow-wrap: break-word; word-break: break-word; }
                        .rec-evidence-label-v3 { font-size: 0.7rem; font-weight: 700; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
                        .rec-evidence-text-v3 { font-size: 0.85rem; color: #475569; line-height: 1.5; white-space: pre-wrap; font-family: monospace; background: #f8fafc; padding: 8px; border-radius: 4px; overflow-x: auto;}
                        .rec-fix-v3 { border-left: 4px solid var(--cohire-blue); padding: 14px 18px; background-color: #F8FAFF; overflow-wrap: break-word; word-break: break-word; }
                        .rec-fix-title-v3 { color: var(--cohire-blue); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.5px; }
                        .rec-fix-text-v3 { color: #334155; font-size: 0.88rem; line-height: 1.5; font-weight: 500; }
                        
