    /* ── Design Tokens ───────────────────────────────────── */
    :root {
      --bg-soft:            #fafafa;
      --bg-subtle:          #f5f5f5;
      --bg-white:           #ffffff;
      --border-base:        #ebeced;
      --text-base:          #0d181f;
      --text-muted:         #757c80;
      --text-subtle:        #3d484f;
      --fg-base:            #0d181f;
      --fg-muted:           #757c80;
      --fg-red-main:        #e11d48;
      --gray-100:           #f4f5f7;
      --gray-200:           #eaedf0;
      --color-text:         #343433;
      --shadow-grey-small:
        0px 0px 0px 1px #ebeced,
        0px 1px 2px 0px rgba(9,18,23,0.12);
      /* Haffer → Albert Sans is our closest web-safe match */
      --font-haffer: 'Albert Sans', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: var(--font-haffer);
      background: transparent;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      min-height: 100vh;
      padding: 40px;
    }

    /* ── App Shell ───────────────────────────────────────── */
    .app-shell {
      display: flex;
      width: 100%;
      max-width: 1510px;
      height: 920px;
      position: relative;
      background: var(--bg-white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 32px rgba(0,0,0,0.1);
    }

    /* ══════════════════════════════════════════════════════
       SIDEBAR
    ══════════════════════════════════════════════════════ */
    .sidebar {
      width: 282px;
      height: 100%;
      background: var(--bg-white);
      border-right: 1px solid var(--border-base);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-bottom: 24px;
      font-size: 14px;
      color: var(--text-base);
      flex-shrink: 0;
      overflow-y: auto;
    }

    /* Logo */
    .sidebar__logo-wrap { padding: 24px 24px 8px; }
    .sidebar__logo { display: block; width: 51px; height: 56px; }

    /* Org switcher */
    .sidebar__org-section {
      padding: 0 16px 24px;
      display: flex; flex-direction: column; gap: 8px;
    }
    .sidebar__org-label {
      font-weight: 600; font-size: 16px; line-height: 1.2;
      color: var(--text-muted); padding: 5px 8px;
    }
    .sidebar__org-cta {
      display: flex; align-items: center; justify-content: space-between;
      height: 44px; padding: 10px 8px;
      background: var(--bg-white); border-radius: 6px;
      box-shadow: var(--shadow-grey-small);
      cursor: pointer; width: 100%;
    }
    .sidebar__org-cta:hover { background: var(--bg-subtle); }
    .org-cta__left { display: flex; align-items: center; gap: 8px; }
    .org-cta__dock {
      width: 31px; height: 31px;
      background: var(--bg-subtle);
      border: 0.646px solid var(--border-base);
      border-radius: 5.167px;
      box-shadow: 0 0 3.875px rgba(0,0,0,0.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .org-cta__dock-letter { font-weight: 600; font-size: 16px; color: var(--text-subtle); }
    .org-cta__name { font-size: 16px; color: var(--fg-base); white-space: nowrap; }
    .org-cta__arrows { display: flex; flex-direction: column; align-items: center; }
    .org-cta__arrows svg { display: block; width: 12px; height: 8px; }

    /* Middle */
    .sidebar__middle {
      display: flex; flex-direction: column;
      align-items: center; justify-content: space-between;
      flex: 1; padding-bottom: 25px;
    }

    /* Nav */
    .sidebar__nav { display: flex; flex-direction: column; width: 100%; padding-right: 16px; }
    .nav-item {
      display: flex; align-items: center; justify-content: space-between;
      height: 48px; padding: 0 24px; border-radius: 8px; cursor: pointer;
      transition: background .15s;
    }
    .nav-item:hover, .nav-item--active { background: var(--bg-soft); }
    .nav-item__left { display: flex; align-items: center; gap: 8px; }
    .nav-item__icon {
      width: 20px; height: 20px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-item__icon svg { width: 20px; height: 20px; display: block; }
    .nav-item__icon--composite {
      position: relative; width: 20px; height: 20px; flex-shrink: 0;
    }
    .nav-item__icon--composite .icon-doc {
      position: absolute; top: 5%; right: 15.71%; bottom: 5%; left: 20%;
    }
    .nav-item__icon--composite .icon-doc svg { width: 100%; height: 100%; }
    .nav-item__label { font-size: 14px; color: var(--text-base); white-space: nowrap; }
    .nav-item__right { display: flex; align-items: center; gap: 6px; }
    .nav-item__chevron {
      width: 20px; height: 20px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-item__chevron svg { width: 12px; height: 8px; display: block; transition: transform .2s; }
    .nav-item__chevron.open svg { transform: rotate(180deg); }

    .badge-new {
      display: flex; align-items: center; justify-content: center;
      height: 20px; padding: 5px 11px; border-radius: 15px;
      border: 1px solid #c1ffb7;
      background:
        linear-gradient(90deg,rgba(255,255,255,.2),rgba(255,255,255,.2)),
        linear-gradient(87.19deg,rgba(168,250,155,.4) 20.56%,rgba(81,213,240,.4) 83.17%),
        #fff;
      font-weight: 600; font-size: 12px; line-height: 1.2;
      color: var(--text-base); white-space: nowrap;
    }

    /* Dropdowns */
    .nav-dropdown {
      display: flex; flex-direction: column;
      padding: 0 8px; overflow: hidden;
      max-height: 0; transition: max-height .25s;
    }
    .nav-dropdown.open { max-height: 200px; }
    .nav-dropdown__item {
      display: flex; align-items: center;
      height: 40px; padding: 0 16px 0 44px;
      border-radius: 6px; cursor: pointer; transition: background .15s;
    }
    .nav-dropdown__item:hover { background: var(--bg-soft); }
    .nav-dropdown__item--active { background: var(--bg-soft); }
    .nav-dropdown__label { font-size: 14px; color: var(--text-base); white-space: nowrap; }

    /* Trusted portal */
    .trusted-portal {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; height: 40px; padding: 8px 12px 8px 8px;
      background: var(--bg-white); border-radius: 6px;
      box-shadow: var(--shadow-grey-small);
      cursor: pointer; margin: 0 16px;
      max-width: 250px;
    }
    .trusted-portal__left { display: flex; align-items: center; gap: 8px; }
    .trusted-portal__icon {
      width: 20px; height: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .trusted-portal__icon svg { width: 20px; height: 20px; display: block; }
    .trusted-portal__label { font-size: 14px; color: var(--color-text); white-space: nowrap; }
    .toggle {
      display: flex; align-items: center;
      width: 44px; height: 24px; padding: 2px;
      background: var(--gray-100); border: 1px solid var(--gray-200);
      border-radius: 12px; cursor: pointer; transition: background .2s;
    }
    .toggle.on { background: #0d181f; }
    .toggle__thumb {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--bg-white);
      box-shadow: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.1);
      transition: transform .2s; flex-shrink: 0;
    }
    .toggle.on .toggle__thumb { transform: translateX(20px); }

    /* Footer */
    .sidebar__footer { display: flex; flex-direction: column; gap: 16px; }
    .footer__separator { height: 1px; width: 100%; background: rgba(0,0,0,.12); }
    .footer__actions { display: flex; align-items: center; gap: 4px; padding: 0 0 0 8px; width: 273px; }
    .footer__btn {
      display: flex; align-items: center; justify-content: center;
      height: 36px; padding: 8px; border-radius: 6px; cursor: pointer;
      transition: background .15s; flex-shrink: 0;
    }
    .footer__btn:hover { background: var(--bg-soft); }
    .footer__btn svg { width: 20px; height: 20px; display: block; }
    .footer__collapse { display: flex; align-items: center; }
    .footer__collapse svg { width: 20px; height: 20px; display: block; }
    .footer__collapse svg:last-child { margin-left: -6px; }

    /* ══════════════════════════════════════════════════════
       MAIN CONTENT
    ══════════════════════════════════════════════════════ */
    .main {
      flex: 1;
      display: flex;
      flex-direction: column;
      background: var(--bg-white);
      min-width: 0;
      position: relative;
      height: 100%;
      overflow-y: auto;
    }

    /* ── Top Bar (Profile) ───────────────────────────────── */
    .topbar {
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-base);
      flex-shrink: 0;
    }

    .profile-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 40px;
      padding: 8px 12px 8px 8px;
      background: var(--bg-white);
      border-radius: 6px;
      box-shadow: var(--shadow-grey-small);
      cursor: pointer;
      white-space: nowrap;
    }
    .profile-btn:hover { background: var(--bg-subtle); }

    /* Avatar */
    .avatar {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: var(--bg-white);
      box-shadow: var(--shadow-grey-small);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5px;
      flex-shrink: 0;
    }
    .avatar__inner {
      width: 100%;
      height: 100%;
      border-radius: 999px;
      background: var(--bg-subtle);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .avatar__letter {
      font-family: var(--font-haffer);
      font-size: 12px;
      font-weight: 500;
      line-height: 20px;
      color: var(--fg-muted);
      text-align: center;
    }

    .profile-btn__name {
      font-family: var(--font-haffer);
      font-size: 16px;
      font-weight: 400;
      color: var(--text-base);
    }

    /* ── Page Header ─────────────────────────────────────── */
    .page-header {
      height: 93px;
      display: flex;
      align-items: center;
      padding: 0 16px 0 24px;
      border-bottom: 1px solid var(--border-base);
      flex-shrink: 0;
    }
    .page-header__text { display: flex; flex-direction: column; gap: 4px; }
    .page-header__title {
      font-family: var(--font-haffer);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
      color: #1c1917;
    }
    .page-header__subtitle {
      font-family: var(--font-haffer);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: #57534e;
    }

    /* ── Dashboard Content ───────────────────────────────── */
    .dashboard-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    /* ── Stat Cards Row ──────────────────────────────────── */
    .stat-cards-row {
      display: flex;
      gap: 8px;
      align-items: stretch;
      flex-wrap: wrap;
    }

    /* ── Stat Card ───────────────────────────────────────── */
    .stat-card {
      flex: 1;
      min-width: 0;
      background: var(--bg-white);
      border: 1px solid var(--border-base);
      border-radius: 8px;
      padding: 24px 24px 16px 24px;
      display: flex;
      flex-direction: column;
      gap: 29px;
    }

    .stat-card__label {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      color: var(--text-subtle);
      white-space: nowrap;
    }

    .stat-card__body {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-card__value {
      font-family: var(--font-haffer);
      font-size: 30px;
      font-weight: 400;
      line-height: 1.2;
      color: var(--text-base);
    }

    .stat-card__meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      white-space: nowrap;
    }

    .stat-card__change {
      color: var(--fg-red-main);
    }

    .stat-card__change--positive {
      color: var(--fg-red-main); /* red per design even for + */
    }

    .stat-card__period {
      color: var(--text-muted);
    }

    /* ══════════════════════════════════════════════════════
       BREACH OVERVIEW CARD
    ══════════════════════════════════════════════════════ */
    .overview-card {
      display: flex;
      background: #fff;
      border: 1px solid var(--border-base);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 8px;
      min-height: 490px;
    }

    /* Left panel – line chart */
    .overview-left {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--border-base);
      position: relative;
    }

    .overview-title-area {
      padding: 23px 23px 14px;
    }
    .overview-title {
      font-family: var(--font-haffer);
      font-size: 18px;
      font-weight: 400;
      color: var(--text-base);
      line-height: 1;
      margin-bottom: 8px;
    }
    .overview-updated {
      font-family: var(--font-haffer);
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1;
    }

    /* Horizontal divider */
    .overview-h-divider {
      height: 1px;
      background: var(--border-base);
      width: 100%;
    }

    /* Date range picker trigger container */
    .datepicker-container {
      position: relative;
      display: inline-flex;
      align-self: flex-start;
      margin: 14px 0 0 23px;
    }
    .overview-datepicker {
      display: inline-flex;
      align-items: center;
      gap: 24px;
      height: 36px;
      padding: 0 8px 0 16px;
      background: #fff;
      border-radius: 6px;
      box-shadow: var(--shadow-grey-small);
      cursor: pointer;
      user-select: none;
    }

    /* ── Date Picker Popup ─────────────────────────────────── */
    .dp-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 368px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0px 6px 12px rgba(9,18,23,0.15), 0px 0px 0px 1px #ebeced;
      z-index: 600;
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-bottom: 16px;
      overflow: hidden;
      visibility: hidden;
      opacity: 0;
      transform-origin: top center;
      transform: translateY(-8px) scale(0.97);
      transition: opacity 0.18s ease,
                  transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1),
                  visibility 0.18s ease;
    }
    .dp-popup.open {
      visibility: visible;
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Header */
    .dp-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 62px;
      padding: 0 16px;
      border-bottom: 1px solid var(--border-base);
      background: #fff;
      flex-shrink: 0;
    }
    .dp-header__title {
      font-family: var(--font-haffer);
      font-size: 16px;
      font-weight: 400;
      color: #242f36;
      letter-spacing: -0.16px;
    }
    .dp-close {
      width: 24px; height: 24px;
      border: none; background: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px; color: #3d484f;
      transition: background .12s;
      flex-shrink: 0;
    }
    .dp-close:hover { background: var(--bg-soft); }
    .dp-close svg { width: 16px; height: 16px; display: block; }

    /* Body */
    .dp-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 16px;
      gap: 0;
    }

    /* Month navigator */
    .dp-month-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: 336px;
      height: 52px;
      padding: 0 6px;
      background: #fafafa;
      border-radius: 8px;
      margin-bottom: 8px;
    }
    .dp-nav-btn {
      width: 40px; height: 40px;
      border: none; background: #fff; cursor: pointer;
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0px 4px 8px -2px rgba(16,24,40,0.10), 0px 2px 4px -2px rgba(16,24,40,0.06);
      flex-shrink: 0; transition: background .12s;
    }
    .dp-nav-btn:hover { background: var(--bg-subtle); }
    .dp-nav-btn svg { width: 20px; height: 20px; display: block; }
    .dp-month-label {
      flex: 1;
      font-family: var(--font-haffer);
      font-size: 16px;
      color: #0c111d;
      text-align: center;
    }

    /* Weekday headers */
    .dp-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 48px);
      width: 336px;
      margin-bottom: 4px;
    }
    .dp-weekday {
      width: 48px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-haffer);
      font-size: 14px;
      color: #0c111d;
    }

    /* Days grid */
    .dp-days {
      display: grid;
      grid-template-columns: repeat(7, 48px);
      width: 336px;
      row-gap: 4px;
    }

    /* Individual day cell */
    .dp-day {
      width: 48px; height: 48px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      position: relative;
      /* background filled by JS for range */
    }
    .dp-day.other-month { cursor: default; }
    .dp-day.other-month .dp-day__inner span { color: #babcbf !important; }

    .dp-day__inner {
      width: 40px; height: 40px;
      border-radius: 999px;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .dp-day__inner span {
      font-family: 'Albert Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.2;
      color: #757c80;
    }

    /* Current month normal days */
    .dp-day.current-month .dp-day__inner span { color: #0d181f; }

    /* Range fill (middle days) */
    .dp-day.in-range { background: #d4fcdf; }
    .dp-day.in-range .dp-day__inner span { color: #0d181f; }

    /* Range start */
    .dp-day.range-start { background: #d4fcdf; border-radius: 999px 0 0 999px; }
    .dp-day.range-start .dp-day__inner { background: #16c476; }
    .dp-day.range-start .dp-day__inner span { color: #fff; }

    /* Range end */
    .dp-day.range-end { background: #d4fcdf; border-radius: 0 999px 999px 0; }
    .dp-day.range-end .dp-day__inner { background: #16c476; }
    .dp-day.range-end .dp-day__inner span { color: #fff; }

    /* Single selected (start == end) */
    .dp-day.range-start.range-end { background: transparent; border-radius: 999px; }

    /* Hover state for normal days */
    .dp-day.current-month:not(.in-range):not(.range-start):not(.range-end):hover .dp-day__inner {
      background: var(--bg-soft);
    }

    /* Footer */
    .dp-footer {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 8px 16px 0;
      width: 100%;
    }

    /* Date input fields */
    .dp-inputs {
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .dp-input-field {
      flex: 1;
      position: relative;
      height: 44px;
      border: 1px solid var(--border-base);
      border-radius: 6px;
      background: #fff;
      display: flex;
      align-items: center;
      padding: 0 14px;
    }
    .dp-input-field__label {
      position: absolute;
      top: -8px;
      left: 7px;
      padding: 0 4px;
      background: #fff;
      font-family: var(--font-haffer);
      font-size: 14px;
      color: var(--text-subtle);
      white-space: nowrap;
      line-height: 1;
    }
    .dp-input-field__value {
      font-family: 'Albert Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--text-base);
      white-space: nowrap;
      line-height: 1.2;
    }

    /* Action buttons */
    .dp-actions {
      display: flex;
      gap: 8px;
    }
    .dp-btn {
      flex: 1;
      height: 40px;
      border-radius: 6px;
      font-family: var(--font-haffer);
      font-size: 16px;
      font-weight: 400;
      cursor: pointer;
      border: none;
      transition: opacity .12s;
    }
    .dp-btn:hover { opacity: .85; }
    .dp-btn--clear {
      background: #fff;
      color: var(--text-base);
      box-shadow: var(--shadow-grey-small);
    }
    .dp-btn--show {
      background: #0d181f;
      color: #fff;
      box-shadow: 0px 1px 2px rgba(9,18,23,0.12), 0px 0px 0px 1px #172229;
    }
    .overview-datepicker__inner {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .overview-datepicker__text {
      font-family: var(--font-haffer);
      font-size: 14px;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .overview-datepicker__chevron svg { width: 16px; height: 16px; display: block; }

    /* Chart wrapper */
    .overview-chart-wrap {
      flex: 1;
      position: relative;
      padding: 12px 16px 0 44px;
      min-height: 260px;
    }

    /* Tooltip pill */
    .chart-tooltip-pill {
      position: absolute;
      top: 6px;
      right: 24px;
      background: #fff;
      border: 1px solid var(--border-base);
      border-radius: 6px;
      box-shadow: 0px 6px 12px rgba(9,18,23,0.15);
      padding: 4px;
      min-width: 162px;
      z-index: 10;
      pointer-events: none;
    }
    .tooltip-pill__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 3px 8px;
      border-radius: 4px;
      width: 100%;
    }
    .tooltip-pill__left {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .tooltip-pill__dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .tooltip-pill__label {
      font-family: var(--font-haffer);
      font-size: 12px;
      color: var(--text-base);
      white-space: nowrap;
    }
    .tooltip-pill__right {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .tooltip-pill__pct {
      font-family: var(--font-haffer);
      font-size: 12px;
      color: var(--text-muted);
    }
    .tooltip-pill__delta {
      font-family: var(--font-haffer);
      font-size: 12px;
      color: #16a34a;
    }

    /* Line chart legend */
    .line-chart-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      padding: 14px 24px 18px 53px;
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .legend-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .legend-label {
      font-family: var(--font-haffer);
      font-size: 12px;
      color: var(--text-subtle);
      white-space: nowrap;
    }
    .legend-check {
      width: 16px;
      height: 16px;
      border-radius: 99px;
      border: 1px solid var(--border-base);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
    }
    .legend-check.checked {
      background: var(--text-base);
      border-color: var(--text-base);
    }
    .legend-check.checked::after {
      content: '';
      display: block;
      width: 8px;
      height: 8px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* Right panel – donut chart */
    .overview-right {
      flex: 0 0 298px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px 16px 16px;
      gap: 20px;
    }
    .donut-wrap {
      position: relative;
      width: 220px;
      height: 220px;
      flex-shrink: 0;
    }
    .donut-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      pointer-events: none;
    }
    .donut-center__value {
      font-family: var(--font-haffer);
      font-size: 20px;
      font-weight: 400;
      color: var(--text-base);
      line-height: 1;
      display: block;
      margin-bottom: 6px;
    }
    .donut-center__label {
      font-family: var(--font-haffer);
      font-size: 12px;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .donut-legend {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px 16px;
      align-self: flex-start;
      padding-left: 20px;
    }
    .donut-legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .donut-legend-item span {
      font-family: var(--font-haffer);
      font-size: 12px;
      color: var(--text-subtle);
      line-height: 1.2;
    }

    /* ══════════════════════════════════════════════════════
       MONITORED DOMAINS SECTION
    ══════════════════════════════════════════════════════ */
    .domains-section-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 16px;
      gap: 16px;
    }
    .domains-header-text {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .btn-add-domain {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 44px;
      padding: 10px 14px;
      background: #babcbf;
      border-radius: 6px;
      border: none;
      color: #fff;
      font-family: var(--font-haffer);
      font-size: 18px;
      font-weight: 400;
      cursor: not-allowed;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0px 1px 2px rgba(9,18,23,0.12), 0px 0px 0px 1px #ebeced;
    }
    .btn-add-domain svg { flex-shrink: 0; }

    /* Domains table */
    .domains-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
    }
    .domains-table thead {
      background: #fafaf9;
    }
    .domains-table thead tr {
      border-left: 1px solid #dcdee0;
      border-right: 1px solid #dcdee0;
      border-top: 1px solid var(--border-base);
    }
    .domains-table thead th {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      text-align: left;
      height: 40px;
      padding: 11px 16px;
      white-space: nowrap;
    }
    .dom-col-check   { width: 48px; padding: 0 16px !important; }
    .dom-col-domain  { width: 280px; }
    .dom-col-added   { width: 210px; }
    .dom-col-latest  { width: 210px; }
    .dom-col-exposed { width: auto; }

    .domains-table tbody tr {
      border-bottom: 1px solid var(--border-base);
    }
    .domains-table tbody tr:last-child { border-bottom: none; }
    .domains-table tbody tr:hover { background: var(--bg-soft); }
    .domains-table tbody td {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-base);
      height: 60px;
      padding: 13px 16px;
      vertical-align: middle;
    }
    .domains-table tbody td.dom-col-check { padding: 0 16px; }
    .domains-table tbody td.dom-col-domain { color: #000; }
    .domains-table tbody td.dom-col-added  { }
    .domains-table tbody td.dom-col-latest { }
    .domains-table tbody td.dom-col-exposed { }

    /* ══════════════════════════════════════════════════════
       BREACH EMPLOYEES TABLE SECTION
    ══════════════════════════════════════════════════════ */
    .section-block {
      padding: 24px 24px 0;
    }

    .section-header {
      margin-bottom: 16px;
    }
    .section-header__title {
      font-family: var(--font-haffer);
      font-size: 20px;
      font-weight: 400;
      line-height: 1;
      color: #1c1917;
      margin-bottom: 8px;
    }
    .section-header__desc {
      font-family: var(--font-haffer);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4;
      color: #1c1917;
      max-width: 564px;
    }

    /* Table card */
    .table-card {
      background: #fff;
      border: 1px solid #e7e5e4;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 24px;
    }
    .table-card .breach-table,
    .table-card .domains-table {
      min-width: 700px;
    }

    /* Toolbar */
    .table-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      padding: 12px 24px;
      background: #fff;
      border-bottom: 1px solid var(--border-base);
      opacity: 0.6;
    }
    .toolbar-left {
      display: flex;
      align-items: center;
      gap: 16px;
      height: 40px;
    }

    /* Single icon button */
    .icon-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 36px;
      background: #fff;
      border-radius: 6px;
      box-shadow: var(--shadow-grey-small);
      cursor: pointer;
      flex-shrink: 0;
      border: none;
      transition: background .15s;
    }
    .icon-btn:hover { background: var(--bg-subtle); }
    .icon-btn svg { display: block; width: 16px; height: 16px; }

    /* Grouped icon buttons */
    .btn-group {
      display: flex;
      align-items: center;
      height: 36px;
      background: #fff;
      border-radius: 6px;
      box-shadow: 0px 1px 2px rgba(0,0,0,0.12), 0px 0px 0px 1px #eaecf0;
      overflow: hidden;
    }
    .btn-group__item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 100%;
      background: #fff;
      cursor: pointer;
      border: none;
      transition: background .15s;
      flex-shrink: 0;
    }
    .btn-group__item:hover { background: var(--bg-subtle); }
    .btn-group__item:not(:last-child) { border-right: 1px solid #eaecf0; }
    .btn-group__item svg { display: block; }

    /* Search bar */
    .toolbar-right { display: flex; align-items: center; }
    .search-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 289px;
      max-width: 100%;
      height: 36px;
      padding: 0 8px 0 14px;
      background: #fff;
      border-radius: 6px;
      box-shadow: var(--shadow-grey-small);
    }
    .search-bar input {
      flex: 1;
      border: none;
      outline: none;
      font-family: var(--font-haffer);
      font-size: 16px;
      color: var(--text-subtle);
      background: transparent;
    }
    .search-bar input::placeholder { color: var(--text-subtle); }
    .search-bar svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--text-subtle); }

    /* Table itself */
    .breach-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
    }
    .breach-table thead {
      background: #fafaf9;
    }
    .breach-table thead th {
      height: 40px;
      padding: 0 16px;
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      text-align: left;
      white-space: nowrap;
      border-left: 1px solid var(--border-base);
      border-right: 1px solid var(--border-base);
    }
    .breach-table thead th:first-child { border-left: none; }
    .breach-table thead th:last-child  { border-right: none; }
    .breach-table thead th.col-check   { width: 48px; padding: 0 16px; }
    .breach-table thead th.col-employee { width: 320px; }
    .breach-table thead th.col-unresolvedLeaks { width: 160px; }
    .breach-table thead th.col-latestLeak      { width: 160px; }
    .breach-table thead th.col-dataExposed     { width: auto; }
    .breach-table thead th.col-notified        { width: 110px; text-align: center; }

    /* Rows */
    .breach-table tbody tr {
      height: 60px;
      border-bottom: 1px solid var(--border-base);
      transition: background .12s;
    }
    .breach-table tbody tr:last-child { border-bottom: none; }
    .breach-table tbody tr:hover { background: var(--bg-soft); }

    .breach-table tbody td {
      padding: 0 16px;
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-base);
      white-space: nowrap;
      vertical-align: middle;
    }
    .breach-table tbody td.col-check {
      padding: 0 16px;
      width: 48px;
    }
    .breach-table tbody td.col-employee {
      /* same 16px padding as other cells */
    }
    .breach-table tbody td.col-notified {
      text-align: center;
    }

    /* Checkbox */
    .row-check {
      width: 16px;
      height: 16px;
      border: 1px solid #babcbf;
      border-radius: 4px;
      background: #fff;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      flex-shrink: 0;
      display: block;
    }
    .row-check:checked {
      background: var(--text-base);
      border-color: var(--text-base);
    }

    /* Notified badge */
    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 24px;
      padding: 0 8px;
      border-radius: 9999px;
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      white-space: nowrap;
    }
    .badge--yes {
      background: #eefff2;
      color: #16c476;
    }
    .badge--no {
      background: #fff1f2;
      color: #f43f5e;
    }

    /* Pagination */
    .table-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      gap: 4px;
      border-top: 1px solid var(--border-base);
      padding: 0 24px;
      font-family: var(--font-haffer);
      font-size: 14px;
      color: var(--text-base);
    }
    .page-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 6px;
      border: none;
      background: transparent;
      font-family: var(--font-haffer);
      font-size: 14px;
      color: var(--text-base);
      cursor: pointer;
      transition: background .12s;
    }
    .page-btn:hover { background: var(--bg-soft); }
    .page-btn.active {
      background: var(--text-base);
      color: #fff;
    }
    .page-btn svg { width: 14px; height: 14px; display: block; }
    .page-dots {
      display: flex;
      align-items: center;
      padding: 0 4px;
      color: var(--text-muted);
      font-size: 14px;
    }
    .rows-per-page {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 16px;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .rows-select {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 4px 8px;
      border: 1px solid var(--border-base);
      border-radius: 6px;
      background: #fff;
      cursor: pointer;
      font-family: var(--font-haffer);
      font-size: 14px;
      color: var(--text-base);
      box-shadow: var(--shadow-grey-small);
    }
    .rows-select svg { width: 12px; height: 12px; }
    .pagination-count {
      color: var(--text-muted);
      white-space: nowrap;
      margin-left: 8px;
    }

    /* ══════════════════════════════════════════════════════
       EMPLOYEE BREACH DETAILS PANEL
    ══════════════════════════════════════════════════════ */
    .emp-overlay {
      display: block;
      position: absolute;
      inset: 0;
      background: rgba(9,18,23,0.35);
      z-index: 200;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.28s ease, visibility 0.28s ease;
    }
    .emp-overlay.open { visibility: visible; opacity: 1; }

    .emp-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: 685px;
      height: 100%;
      background: #fff;
      z-index: 201;
      display: flex;
      flex-direction: column;
      box-shadow: -4px 0 24px rgba(9,18,23,0.12);
      transform: translateX(100%);
      transition: transform 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 0.34s ease;
      overflow-y: auto;
    }
    .emp-panel.open { transform: translateX(0); }

    /* Header */
    .emp-panel__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      background: #fafafa;
      flex-shrink: 0;
    }
    .emp-panel__title {
      font-family: var(--font-haffer);
      font-size: 20px;
      font-weight: 400;
      line-height: 28px;
      color: #1c1917;
    }
    .emp-panel__close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border: none;
      background: transparent;
      cursor: pointer;
      color: #3d484f;
      flex-shrink: 0;
    }
    .emp-panel__close svg { display: block; }

    /* Employee info row */
    .emp-panel__employee {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 16px 32px;
      background: #fff;
      flex-shrink: 0;
    }
    .emp-panel__info {
      display: flex;
      align-items: center;
      gap: 24px;
      flex: 1;
      min-width: 0;
    }
    .emp-avatar {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      background: #fff;
      box-shadow: var(--shadow-grey-small);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .emp-avatar__inner {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .emp-avatar__inner span {
      font-family: 'Inter', var(--font-haffer);
      font-size: 16px;
      font-weight: 500;
      color: #757c80;
      line-height: 20px;
    }
    .emp-name-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      white-space: nowrap;
    }
    .emp-name {
      font-family: var(--font-haffer);
      font-size: 22px;
      font-weight: 400;
      line-height: 1.2;
      color: #292524;
    }
    .emp-email {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
    }
    .emp-notify-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .emp-notify-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 36px;
      padding: 10px 14px;
      background: #0d181f;
      border-radius: 6px;
      border: none;
      color: #fff;
      font-family: var(--font-haffer);
      font-size: 16px;
      font-weight: 400;
      cursor: pointer;
      white-space: nowrap;
      box-shadow: 0px 1px 2px rgba(9,18,23,0.12), 0px 0px 0px 1px #172229;
      transition: background .15s, box-shadow .15s;
    }
    .emp-notify-btn:hover:not(.emp-notify-btn--disabled) { background: #1a2e3b; }
    .emp-notify-btn.emp-notify-btn--disabled {
      background: #babcbf;
      cursor: not-allowed;
      box-shadow: 0px 1px 2px rgba(9,18,23,0.12), 0px 0px 0px 1px #ebeced;
    }
    .emp-notify-btn svg { flex-shrink: 0; }

    /* Notify tooltip */
    .emp-notify-tooltip {
      display: none;
      position: absolute;
      bottom: calc(100% + 8px);
      right: 0;
      background: #fff;
      border: 1px solid var(--border-base);
      border-radius: 6px;
      box-shadow: 0px 6px 12px rgba(9,18,23,0.15);
      padding: 4px;
      z-index: 300;
      white-space: nowrap;
    }
    /* Tooltip only visible when button is disabled */
    .emp-notify-wrap:has(.emp-notify-btn--disabled):hover .emp-notify-tooltip { display: flex; }
    .emp-notify-tooltip__inner {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 8px;
      border-radius: 4px;
    }
    .emp-notify-tooltip__text {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      line-height: normal;
      white-space: nowrap;
    }

    /* Stats grid */
    .emp-panel__stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 0 32px 0;
      flex-shrink: 0;
    }
    .emp-stat-card {
      background: #fafafa;
      border-radius: 8px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      height: 107px;
    }
    .emp-stat-label {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-subtle);
      white-space: nowrap;
    }
    .emp-stat-value {
      font-family: var(--font-haffer);
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2;
      color: var(--text-base);
    }

    /* Tabs */
    .emp-panel__tabs {
      display: flex;
      align-items: flex-end;
      gap: 16px;
      padding-left: 24px;
      height: 56px;
      border-bottom: 1px solid #eaecf0;
      flex-shrink: 0;
      margin-top: 40px;
    }
    .emp-tab {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 40px;
      padding: 0 12px;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
    }
    .emp-tab--active {
      border-bottom-color: #0d181f;
    }
    .emp-tab__label {
      font-family: var(--font-haffer);
      font-size: 16px;
      font-weight: 400;
      color: var(--text-muted);
    }
    .emp-tab--active .emp-tab__label { color: var(--text-base); }
    .emp-tab__badge {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 20px;
      height: 20px;
      padding: 1px 4px;
      border-radius: 4px;
      font-family: var(--font-haffer);
      font-size: 12px;
      font-weight: 400;
      background: #fff;
      border: 1px solid var(--border-base);
      color: var(--text-base);
    }
    .emp-tab__badge--dark {
      background: #0d181f;
      border-color: #0d181f;
      color: #fff;
      box-shadow: 0px 1px 2px rgba(9,18,23,0.12);
    }

    /* Tab content — no height constraint; panel-level overflow-y:auto handles scroll */
    .emp-panel__tab-content {
      padding: 24px 32px 40px;
    }

    /* ── Affected Logins table ───────────────────────────── */
    .al-title {
      font-family: var(--font-haffer);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.2;
      color: var(--text-base);
      margin-bottom: 16px;
    }
    .al-card {
      border: 1px solid var(--border-base);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .al-thead {
      display: flex;
      align-items: center;
      background: #fafafa;
      border-bottom: 1px solid var(--border-base);
      flex-shrink: 0;
    }
    .al-th {
      font-family: var(--font-haffer);
      font-size: 12px;
      font-weight: 400;
      color: var(--text-base);
      padding: 12px 16px;
      white-space: nowrap;
    }
    .al-th:first-child { width: 177px; flex-shrink: 0; }
    .al-th:nth-child(2) { width: 200px; flex-shrink: 0; }
    .al-th:nth-child(3) { width: 130px; flex-shrink: 0; }
    .al-th:last-child   { flex: 1; }

    .al-tbody {
      max-height: 400px;
      overflow-y: auto;
    }
    .al-row {
      display: flex;
      align-items: center;
      height: 60px;
      border-bottom: 1px solid var(--border-base);
      padding: 0;
    }
    .al-row:last-child { border-bottom: none; }
    .al-row:hover { background: var(--bg-soft); }
    .al-cell {
      font-family: var(--font-haffer);
      font-size: 12px;
      font-weight: 400;
      color: var(--text-muted);
      padding: 0 16px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .al-cell--service {
      font-size: 14px;
      color: #000;
      width: 177px;
      flex-shrink: 0;
    }
    .al-cell--login  { width: 200px; flex-shrink: 0; }
    .al-cell--data   { width: 130px; flex-shrink: 0; }
    .al-cell--status { flex: 1; }

    .al-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 8px;
      border-radius: 9999px;
      font-family: var(--font-haffer);
      font-size: 12px;
      font-weight: 400;
      white-space: nowrap;
    }
    .al-badge--resolved     { background: #eefff2; color: #16c476; }
    .al-badge--not-resolved { background: #fff1f2; color: #f43f5e; padding: 6px 3px; width: 79px; text-align: center; }

    .al-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      height: 60px;
      background: #fafafa;
      border-top: 1px solid var(--border-base);
      flex-shrink: 0;
    }
    .al-footer-count {
      font-family: var(--font-haffer);
      font-size: 12px;
      color: #000;
    }
    .al-footer-link {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-subtle);
      cursor: pointer;
      text-decoration: none;
    }
    .al-footer-link:hover { color: var(--text-base); }

    /* ── Breach Log tab ─────────────────────────────────── */
    .bl-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }
    .bl-header__text {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .bl-title {
      font-family: var(--font-haffer);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.2;
      color: var(--text-base);
    }
    .bl-updated {
      font-family: var(--font-haffer);
      font-size: 12px;
      font-weight: 400;
      color: var(--text-subtle);
    }
    .bl-datebar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      height: 36px;
      padding: 10px 8px 10px 16px;
      background: #fff;
      border-radius: 6px;
      box-shadow: var(--shadow-grey-small);
      cursor: pointer;
      flex-shrink: 0;
    }
    .bl-datebar:hover { background: var(--bg-soft); }
    .bl-datebar__left {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .bl-datebar__left svg { flex-shrink: 0; color: var(--text-subtle); }
    .bl-datebar__label {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: var(--text-base);
      white-space: nowrap;
    }
    .bl-datebar__chevron {
      flex-shrink: 0;
      color: var(--text-subtle);
    }
    .bl-card {
      background: #fff;
      border: 1px solid var(--border-base);
      border-radius: 8px;
      overflow: hidden;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .bl-empty {
      font-family: var(--font-haffer);
      font-size: 14px;
      color: var(--text-muted);
      text-align: center;
    }

    /* ── Breach Log Timeline ─────────────────────────────── */
    .bl-card { align-items: flex-start; min-height: auto; padding: 20px 20px 20px 16px; }
    .bl-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 100%;
      padding-left: 26px;
    }
    .bl-tl-item {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-bottom: 18px;
    }
    .bl-tl-item:last-child { padding-bottom: 0; }

    /* Vertical connecting line */
    .bl-tl-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: -20px;
      top: 10px;
      bottom: 0;
      width: 1px;
      background: #ebeced;
    }

    /* Timeline dot */
    .bl-tl-item::before {
      content: '';
      position: absolute;
      left: -23px;
      top: 4px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #d1d5db;
      border: 1px solid #d1d5db;
      z-index: 1;
    }
    .bl-tl-item.bl-tl-item--action::before {
      background: #16c476;
      border-color: #16c476;
    }

    .bl-tl-text {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.2;
      color: #000;
    }
    .bl-tl-meta {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .bl-tl-time {
      font-family: var(--font-haffer);
      font-size: 10px;
      font-weight: 400;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .bl-tl-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--text-muted);
      flex-shrink: 0;
    }
    .bl-tl-by {
      font-family: var(--font-haffer);
      font-size: 10px;
      font-weight: 400;
      color: var(--text-muted);
      white-space: nowrap;
    }
    /* ── Notify Confirmation Modal ──────────────────────── */
    .notify-modal-overlay {
      display: flex;
      position: absolute;
      inset: 0;
      background: rgba(9,18,23,0.5);
      z-index: 500;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.22s ease, visibility 0.22s ease;
    }
    .notify-modal-overlay.open { visibility: visible; opacity: 1; }
    .notify-modal {
      position: relative;
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      width: 424px;
      box-shadow: 0px 6px 12px rgba(9,18,23,0.15), 0px 0px 0px 1px #ebeced;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
      overflow: hidden;
      transform: scale(0.95) translateY(10px);
      opacity: 0;
      transition: transform 0.28s cubic-bezier(0.34, 1.45, 0.64, 1),
                  opacity 0.22s ease;
    }
    .notify-modal-overlay.open .notify-modal {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
    /* X close button — top-right */
    .notify-modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border: none;
      background: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      padding: 4px;
    }
    .notify-modal__close:hover { background: var(--bg-soft); }
    /* Content block: icon + text */
    .notify-modal__content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
    }
    .notify-modal__icon { display: block; flex-shrink: 0; margin: 0 auto; }
    .notify-modal__text-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
      text-align: center;
    }
    .notify-modal__title {
      font-family: var(--font-haffer);
      font-size: 18px;
      font-weight: 400;
      color: #0d181f;
      text-align: center;
      width: 100%;
    }
    .notify-modal__desc {
      font-family: var(--font-haffer);
      font-size: 14px;
      font-weight: 400;
      color: #707d85;
      text-align: center;
      line-height: 1.4;
      width: 100%;
    }
    /* Phone+email mockup image */
    .notify-modal__mockup {
      display: block;
      width: 100%;
      height: 267px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
    }
    /* Actions */
    .notify-modal__actions {
      display: flex;
      gap: 12px;
      width: 100%;
    }
    .notify-modal__cancel {
      flex: 1;
      height: 44px;
      border-radius: 6px;
      border: none;
      background: #fff;
      box-shadow: 0px 1px 2px rgba(9,18,23,0.12), 0px 0px 0px 1px #ebeced;
      font-family: var(--font-haffer);
      font-size: 18px;
      font-weight: 400;
      color: #0d181f;
      cursor: pointer;
      overflow: hidden;
    }
    .notify-modal__cancel:hover { background: var(--bg-soft); }
    .notify-modal__confirm {
      flex: 1;
      height: 44px;
      border-radius: 6px;
      border: none;
      background: #0d181f;
      font-family: var(--font-haffer);
      font-size: 18px;
      font-weight: 400;
      color: #fff;
      cursor: pointer;
      overflow: hidden;
      box-shadow: 0px 1px 2px rgba(9,18,23,0.12), 0px 0px 0px 1px #172229;
    }
    .notify-modal__confirm:hover { background: #1a2e3b; }

    /* ══════════════════════════════════════════════════════
       GUIDED DEMO SYSTEM
    ══════════════════════════════════════════════════════ */

    /* Animations */
    @keyframes guidedFadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes guidedPulseRing {
      0%   { transform: translate(-50%,-50%) scale(0.5); opacity: 1; }
      100% { transform: translate(-50%,-50%) scale(2.8); opacity: 0; }
    }
    @keyframes guidedScaleIn {
      from { opacity: 0; transform: scale(0.95); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* ── Spotlight overlay ── */
    .guided-overlay {
      position: absolute; inset: 0; z-index: 9800;
      pointer-events: none; visibility: hidden; opacity: 0;
      transition: opacity .35s ease;
    }
    .guided-overlay.active {
      visibility: visible; opacity: 1; pointer-events: auto;
    }
    .guided-overlay.dimmed {
      background: rgba(9,18,23,0.55);
    }
    .guided-spotlight {
      position: absolute; z-index: 9801;
      border-radius: 10px;
      width: 0; height: 0; display: none;
      box-shadow: none;
      pointer-events: none;
      transition: all .45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ── Pulse ring (attention cue) ── */
    .guided-pulse {
      position: absolute; z-index: 9810; pointer-events: none;
      width: 0; height: 0; display: none;
    }
    .guided-pulse__ring {
      position: absolute; top: 0; left: 0;
      width: 56px; height: 56px; border-radius: 50%;
      border: 2.5px solid #16c476;
      animation: guidedPulseRing 1.5s ease-out infinite;
      transform: translate(-50%,-50%) scale(0.5);
    }
    .guided-pulse__ring:nth-child(2) { animation-delay: 0.5s; }
    .guided-pulse__dot {
      position: absolute; top: 0; left: 0;
      width: 12px; height: 12px; border-radius: 50%;
      background: #16c476; transform: translate(-50%,-50%);
      box-shadow: 0 0 0 4px rgba(22,196,118,0.22);
    }

    /* ── Tooltip card ── */
    .guided-tooltip {
      position: absolute; z-index: 9850;
      background: #fff; border-radius: 14px;
      padding: 22px 24px 20px; width: 340px;
      box-shadow: 0 12px 40px rgba(9,18,23,0.2), 0 0 0 1px rgba(9,18,23,0.05);
      display: none; flex-direction: column; gap: 10px;
      animation: guidedFadeIn .25s ease;
    }
    .guided-tooltip.show { display: flex; }
    .guided-tooltip.centered {
      top: 50% !important; left: 50% !important;
      transform: translate(-50%, -50%);
      width: 400px; padding: 32px; gap: 14px; text-align: center;
      animation: guidedScaleIn .3s ease;
    }

    .guided-tooltip__header {
      display: flex; align-items: center; justify-content: space-between;
    }
    .guided-tooltip.centered .guided-tooltip__header {
      justify-content: center;
    }
    .guided-tooltip__step-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-family: var(--font-haffer); font-size: 11px; font-weight: 600;
      color: #16c476; background: rgba(22,196,118,0.08);
      border-radius: 20px; padding: 4px 12px;
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .guided-tooltip__step-dot {
      width: 6px; height: 6px; border-radius: 50%; background: #16c476;
    }
    .guided-tooltip__close {
      width: 28px; height: 28px; border: none; background: none;
      cursor: pointer; color: #9ca3af; font-size: 16px; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      border-radius: 6px; padding: 0; transition: all .15s;
    }
    .guided-tooltip__close:hover { background: #f4f5f7; color: #0d181f; }

    .guided-tooltip__icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: linear-gradient(135deg, #0d181f 0%, #1a3a4a 100%);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 4px;
    }

    .guided-tooltip__title {
      font-family: var(--font-haffer); font-size: 17px; font-weight: 600;
      color: #0d181f; line-height: 1.3;
    }
    .guided-tooltip__desc {
      font-family: var(--font-haffer); font-size: 13px; font-weight: 400;
      color: #5f6b72; line-height: 1.6;
    }
    .guided-tooltip__cta-hint {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--font-haffer); font-size: 12px; font-weight: 600;
      color: #16c476; margin-top: 2px;
    }

    .guided-tooltip__footer {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 6px;
    }
    .guided-tooltip.centered .guided-tooltip__footer {
      justify-content: center;
    }
    .guided-tooltip__progress {
      display: flex; gap: 4px; align-items: center;
    }
    .guided-tooltip__progress-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #e5e7eb; transition: background .25s;
    }
    .guided-tooltip__progress-dot.active { background: #16c476; }
    .guided-tooltip__progress-dot.done { background: #a7f3d0; }

    .guided-tooltip__actions {
      display: flex; align-items: center; gap: 8px;
    }
    .guided-tooltip__btn {
      font-family: var(--font-haffer); font-size: 13px; font-weight: 600;
      padding: 8px 18px; border-radius: 8px; cursor: pointer;
      border: 1px solid #ebeced; background: #fff; color: #3d484f;
      transition: all .15s; line-height: 1;
    }
    .guided-tooltip__btn:hover { background: #f4f5f7; }
    .guided-tooltip__btn--primary {
      background: #0d181f; color: #fff; border-color: #0d181f;
    }
    .guided-tooltip__btn--primary:hover { background: #1a2e3b; }
    .guided-tooltip__btn--start {
      font-size: 14px; padding: 10px 28px; border-radius: 10px;
    }

    /* ── Restart FAB ── */
    .guided-restart-fab {
      position: absolute; bottom: 24px; right: 24px; z-index: 9700;
      height: 52px; padding: 0 20px 0 16px; border-radius: 999px;
      background: #0d181f; color: #fff; border: none; cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      box-shadow: 0 12px 30px rgba(9,18,23,0.22);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
      font-family: var(--font-haffer); font-size: 16px; font-weight: 600;
      letter-spacing: 0.01em;
    }
    .guided-restart-fab:hover {
      transform: translateY(-1px);
      background: #1a2e3b;
      box-shadow: 0 16px 36px rgba(9,18,23,0.26);
    }
    .guided-restart-fab svg { flex: 0 0 auto; }
    .guided-restart-fab__label { white-space: nowrap; }
    .guided-restart-fab.hidden { display: none; }

    /* ── Global smooth micro-transitions ─────────────────────── */

    /* Tab content fade-in on switch */
    @keyframes tabFadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .tab-fadein { animation: tabFadeIn 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

    /* Stat cards — lift on hover */
    .stat-card {
      transition: box-shadow 0.22s ease, transform 0.22s ease;
    }
    .stat-card:hover {
      box-shadow: 0 4px 18px rgba(9,18,23,0.1);
      transform: translateY(-2px);
    }

    /* Overview card subtle lift */
    .overview-card {
      transition: box-shadow 0.22s ease;
    }
    .overview-card:hover {
      box-shadow: 0 4px 20px rgba(9,18,23,0.1);
    }

    /* Table rows — smooth background */
    .breach-table tbody tr {
      transition: background 0.15s ease;
    }

    /* Affected-logins rows */
    .al-row {
      transition: background 0.14s ease;
    }

    /* Primary dark buttons — subtle lift on hover */
    .emp-notify-btn:not(.emp-notify-btn--disabled):hover,
    .notify-modal__confirm:hover,
    .guided-tooltip__btn--primary:hover,
    .guided-welcome__btn--primary:hover {
      transform: translateY(-1px);
      transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    }

    /* Sidebar nav items */
    .nav-item, .nav-sub-item {
      transition: background 0.15s ease, color 0.15s ease;
    }

    /* Datebar trigger */
    #datepickerTrigger, .bl-datebar {
      transition: box-shadow 0.18s ease, background 0.15s ease;
    }
    #datepickerTrigger:hover, .bl-datebar:hover {
      box-shadow: 0 2px 10px rgba(9,18,23,0.12);
    }

    /* Emp panel tabs */
    .emp-tab {
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }

    /* Notify tooltip */
    .emp-notify-tooltip {
      transition: opacity 0.15s ease;
    }

    /* Minimal single-line tooltip */
    /* (guided tooltip styles defined in GUIDED DEMO SYSTEM section above) */

    /* ══════════════════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
    ══════════════════════════════════════════════════════ */
    @media (max-width: 1200px) {
      body { padding: 20px; }
      .overview-card { flex-direction: column; min-height: auto; }
      .overview-left { border-right: none; border-bottom: 1px solid var(--border-base); }
      .overview-right {
        flex: none; width: 100%;
        flex-direction: row; justify-content: center;
        gap: 32px; padding: 24px;
      }
      .stat-card { min-width: calc(33% - 6px); }
      .breach-table,
      .domains-table { table-layout: auto; }
    }

    @media (max-width: 900px) {
      body { padding: 0; }
      .sidebar { display: none; }
      .app-shell {
        height: auto; min-height: 100vh;
        border-radius: 0; box-shadow: none;
      }
      .main { height: auto; }
      .stat-card { min-width: calc(50% - 4px); }
      .toolbar-left { gap: 8px; }
      .table-toolbar {
        flex-wrap: wrap; height: auto;
        gap: 8px; padding: 12px 16px;
      }
      .search-bar { width: 100%; }
      .domains-section-header { flex-direction: column; }
      .table-card { overflow-x: auto; }
    }

    @media (max-width: 600px) {
      .stat-card { min-width: 100%; }
      .overview-right { flex-direction: column; }
      .dashboard-content { padding: 16px; }
      .page-header { padding: 0 16px; }
      .section-block { padding: 16px 16px 0; }
      .table-pagination {
        flex-wrap: wrap; gap: 8px;
        height: auto; padding: 12px 16px;
      }
      .rows-per-page { margin: 0; }
      .page-header__title { font-size: 20px; }
      .page-header__subtitle { font-size: 14px; }
    }
