/* Prototype-only overrides. Keep separate from copied real-app styles. */

/* Shared colour tokens — reusable across prototype pages. */
:root {
    --pb-accent-green: #83B345;
    --pb-blue: #173070;        /* primary button colour */
    --pb-blue-hover: #112457;  /* primary button hover */
}

/* Utility classes that exist in the real app's bundle but not in site.css. */
.text-accent-red { color: #d35230 !important; }
.fs-10 { font-size: 10px !important; }
.fs-12 { font-size: 12px !important; }
.fs-14 { font-size: 14px !important; }
.fs-16 { font-size: 16px !important; }
.fs-18 { font-size: 18px !important; }
.fs-24 { font-size: 24px !important; }

/* Highlighted current-week row in the calendar. */
.calendar-day-current-week {
    background-color: #F5F7F9;
}
.calendar-day-current-week:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
.calendar-day-current-week:last-child  { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }


/* Menu items that aren't built in the prototype yet — greyed out, no badge. The menu
   otherwise mirrors the real one item for item, so the greying is the only signal. */
.menu-disabled,
.menu-disabled:hover {
    color: #8a99b3 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    position: relative;
}

/* Disabled link in the top header bar — no inserted pseudo badge, uses an
   explicit pill so adjacent icon + text don't each render their own. */
.header-disabled,
.header-disabled:hover {
    opacity: 0.55;
    cursor: not-allowed !important;
    pointer-events: none;
    color: #fff !important;
    text-decoration: none !important;
}

.header-soon-pill {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.18);
    padding: 1px 6px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

/* ------------------------------------------------------------------
   Mega-menu — prototype-only layout + behaviour on top of site.css.
   ------------------------------------------------------------------ */

/* Backdrop: dim + blur the page behind the open menu and lock page scroll. Sits below
   .fixed-top (z-index 1030) so the header/menu stay crisp; toggled by body.menu-open,
   which the header script adds on Bootstrap collapse show/hide. */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1025;
    background: rgba(10, 20, 45, 0.45);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
body.menu-open .menu-overlay { display: block; }

/* The menu lives OUTSIDE .fixed-top and is positioned against the document (site.css keeps
   top: 85px / right: 79px), so the browser's page scroll moves the whole menu — no inner
   scroller. z-index above the overlay (1025) but below the fixed header (1030) so it slides
   under the header when scrolled. Page scroll is intentionally NOT locked. */
.navbar-collapse {
    position: absolute;
    z-index: 1028;
}

/* Column block: fill the container up to 1366px, centred, 52px side insets. */
.menuItemHolder {
    width: 100%;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 52px;
    padding-right: 52px;
}
    /* flex:1 so 3 or 4 columns (the Succession Planning section adds a fourth for some
       personas) distribute evenly without hard-coding a per-column width. site.css gives the
       columns a 100px bottom padding (room for the old absolute footer) — trim it to 20px. */
    .menuItemHolder ul { flex: 1 1 0; min-width: 220px; padding-bottom: 20px; }

/* Bottom bar: same 1366px grid as the columns; role/user left, language/exit right, with
   a 1px translucent divider (not #fff) edge-to-edge of the container. */
.menuLanguageHolder {
    justify-content: space-between;
    padding: 16px 52px;
    width: 100%;
    max-width: 1366px;
    /* Flows at the end of the menu (not absolutely positioned) so it scrolls into view
       with the rest of the menu on page scroll. */
    position: static;
    margin-left: auto;
    margin-right: auto;
    flex: 0 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
    .menuLanguageHolder .mlh-left,
    .menuLanguageHolder .mlh-right {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .menuLanguageHolder .mlh-right { flex: 0 0 auto; gap: 12px; }
    .menuLanguageHolder .mlh-right > span { margin-left: 0; }
    .menuLanguageHolder .mlh-left span + span { margin-left: 24px; }

/* 1px translucent vertical rule between the flags and Изход (spacing from the flex gap). */
.menuLanguageHolder .lang-sep {
    display: inline-block;
    width: 1px;
    height: 16px;
    margin: 0;
    background: rgba(255, 255, 255, 0.25);
    vertical-align: middle;
}

/* Font sizes: 18px column headings, 16px column links, 16px bottom bar. */
.menuHeading { font-size: 18px; }
.menuItemHolder ul li a { font-size: 16px; }
/* A clickable section heading (e.g. Succession Planning) keeps the heading look. */
.menuItemHolder .menuHeading a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
.menuItemHolder .menuHeading a:hover { text-decoration: underline; }
.menuLanguageHolder,
.menuLanguageHolder span,
.menuLanguageHolder a { font-size: 16px; }

/* "Акаунт" column shown to end users in place of Администрация: role, user, language, exit. */
.menuItemHolder .sp-account-line { color: #fff; font-size: 16px; }
.menuItemHolder .sp-account-lang { display: flex; align-items: center; gap: 12px; }
.menuItemHolder .sp-flag img { display: block; width: 27px; height: 20px; }
.menuItemHolder .sp-flag.active img { border: 1px solid #fff; border-radius: 5px; padding: 1px; }
.menuItemHolder .sp-vsep { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.25); }
.menuItemHolder .sp-account-exit { color: #fff; font-size: 16px; text-decoration: none; }
.menuItemHolder .sp-account-exit:hover { text-decoration: underline; }

/* MyMandatoryPath — expanded resource rows (numbered timeline). */
.mp-resource-row {
    display: flex;
    padding: 16px 24px;
    color: inherit;
    text-decoration: none !important;
    border-bottom: 1px solid #EAEDF2;
    transition: background-color 150ms ease;
}
.mp-resource-row:last-child { border-bottom: 0; }
.mp-resource-row:hover { background: #F5F7F9; }
.mp-resource-row:hover .mp-resource-name { color: #033E8B; }

.mp-resource-rail {
    width: 40px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mp-resource-bullet {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    position: relative;
}
.mp-resource-connector {
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    bottom: -16px;
    z-index: 1;
}

.mp-resource-body {
    padding: 0 16px;
    min-width: 0;
}
.mp-resource-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    transition: color 150ms ease;
}
.mp-resource-meta {
    color: #727272;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}
.mp-resource-sep {
    margin: 0 8px;
    color: #ccc;
}
.mp-resource-desc {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-resource-status {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #727272;
    gap: 6px;
    padding-left: 16px;
}
.mp-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Catalogue card hover lift. */
.catalogue-card { transition: box-shadow 0.15s ease, transform 0.15s ease; }
.catalogue-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }

/* MyDevelopmentPath training rows. */
.dev-training-row { transition: background-color 150ms ease; }
.dev-training-row:hover { background: #F5F7F9; }
.dev-training-row:hover .learning-resource-name { color: #033E8B; }

/* Home left panel: independent scroll, scrollbar visible only on hover. */
.left-home-sidebar-inner {
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
.left-home-sidebar-inner:hover {
    scrollbar-color: #c4c4c4 transparent;
}
.left-home-sidebar-inner::-webkit-scrollbar { width: 8px; }
.left-home-sidebar-inner::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
}
.left-home-sidebar-inner:hover::-webkit-scrollbar-thumb {
    background: #c4c4c4;
}

/* Make the prototype banner clearly visible so nobody mistakes it for prod. */
.prototype-ribbon {
    position: fixed;
    bottom: 8px;
    right: 8px;
    z-index: 9999;
    background: #d35230;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    pointer-events: none;
}

/* ------------------------------------------------------------------
   Workforce Agility — prototype-only styling for the admin/profile
   screens. The real app renders these as DevExtreme grids; DevExtreme
   is not available here, so these are plain tables styled to match.
   ------------------------------------------------------------------ */

.wfa-page { max-width: 1224px; margin: 0 auto; padding: 24px 0 48px; }
.wfa-page h1 { font-size: 22px; font-weight: 600; color: #2b303b; margin: 0; }
.wfa-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.wfa-sub { font-size: 14px; color: #6b7280; margin: 4px 0 0; }

.wfa-tabs { display: flex; gap: 4px; border-bottom: 1px solid #e6e8ee; margin-bottom: 20px; flex-wrap: wrap; }
.wfa-tabs a { padding: 10px 16px; font-size: 14px; color: #5b6273; text-decoration: none; border-bottom: 2px solid transparent; }
.wfa-tabs a:hover { color: #1c5aa0; }
.wfa-tabs a.is-active { color: #1c5aa0; font-weight: 600; border-bottom-color: #1c5aa0; }

.wfa-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e6e8ee; font-size: 14px; }
.wfa-table th { background: #f5f7f9; text-align: left; padding: 10px 12px; font-weight: 600; color: #2b303b; border-bottom: 1px solid #e6e8ee; white-space: nowrap; }
.wfa-table td { padding: 10px 12px; border-bottom: 1px solid #eef0f3; color: #2b303b; vertical-align: middle; }
.wfa-table tr:last-child td { border-bottom: 0; }
.wfa-table tbody tr:hover { background: #fafbfc; }
.wfa-table .wfa-num { text-align: right; white-space: nowrap; }
.wfa-scroll { overflow-x: auto; }

.wfa-pill { display: inline-block; font-size: 12px; border-radius: 12px; padding: 2px 10px; white-space: nowrap; background: #e1e5ea; color: #33384a; }
.wfa-pill.is-new { background: #e1e5ea; color: #33384a; }
.wfa-pill.is-review { background: #fde8c8; color: #8a5a00; }
.wfa-pill.is-open { background: #cfe9d6; color: #1d6b32; }
.wfa-pill.is-running { background: #cee5f6; color: #14507f; }
.wfa-pill.is-done { background: #d6d9e6; color: #33384a; }
.wfa-pill.is-canceled { background: #f5d3cc; color: #8a2b18; }

.wfa-actions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
/* Височината идва от падинга, не се фиксира — иначе текстът се притиска при по-едър шрифт. */
.wfa-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; font-size: 13px; border-radius: 5px; border: 1px solid #d0d7e1; background: #fff; color: #33384a; cursor: pointer; text-decoration: none; }
.wfa-btn:hover { background: #f2f5f8; color: #1c5aa0; border-color: #b9c4d2; }
.wfa-btn.is-primary { background: var(--pb-blue); border-color: var(--pb-blue); color: #fff; }
.wfa-btn.is-primary:hover { background: var(--pb-blue-hover); color: #fff; }
.wfa-btn.is-danger:hover { color: #a3271a; border-color: #e3b3aa; background: #fdf3f1; }
.wfa-btn:disabled { opacity: .5; cursor: default; }

.wfa-detail { background: #f7f9fb; border: 1px solid #e6e8ee; border-top: 0; padding: 16px; }
.wfa-detail h3 { font-size: 15px; font-weight: 600; color: #2b303b; margin: 0 0 10px; }
.wfa-detail + .wfa-detail { margin-top: 16px; }

.wfa-match { display: flex; align-items: center; gap: 8px; min-width: 120px; }
.wfa-match-bar { flex: 1; height: 6px; background: #e1e5ea; border-radius: 3px; overflow: hidden; min-width: 60px; }
.wfa-match-bar i { display: block; height: 100%; background: #1c5aa0; }

.wfa-empty { padding: 24px; text-align: center; color: #8a909e; font-size: 14px; background: #fff; border: 1px solid #e6e8ee; }
.wfa-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.wfa-field label { display: block; font-size: 13px; color: #5b6273; margin-bottom: 4px; }
.wfa-field input[type=text], .wfa-field input[type=number], .wfa-field input[type=date], .wfa-field select, .wfa-field textarea {
    width: 100%; min-height: 36px; padding: 6px .75rem; font-size: 14px;
    border: 1px solid #EAEDF2; border-radius: 5px; background: #fff; color: #212529;
}
.wfa-field textarea { min-height: 140px; resize: vertical; }

/* Role switcher — collapsed pill, names only. Native <details>, no JS. */

.pswitch { position: fixed; bottom: 12px; right: 12px; z-index: 9999;
           font-family: "Segoe UI", Roboto, Arial, sans-serif; }

.pswitch > summary {
    list-style: none; display: inline-flex; align-items: center; gap: 8px;
    background: #1f2430; color: #fff; border-radius: 999px;
    padding: 5px 10px; cursor: pointer; font-size: 12px;
    box-shadow: 0 4px 14px rgba(15,20,30,.25); user-select: none;
}
.pswitch > summary::-webkit-details-marker { display: none; }
.pswitch > summary:hover { background: #2b323f; }
.pswitch-badge { background: #d35230; color: #fff; font-size: 9px; font-weight: 700;
                 letter-spacing: .5px; border-radius: 999px; padding: 3px 7px; }
.pswitch > summary .pswitch-name { font-size: 12px; font-weight: 600; color: #fff; }
.pswitch-caret { font-size: 13px; color: #aab3c2; }
.pswitch[open] > summary .pswitch-caret { transform: rotate(180deg); }

.pswitch-panel {
    position: absolute; bottom: calc(100% + 6px); right: 0; width: 190px;
    background: #fff; border: 1px solid #e2e6ee; border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15,20,30,.18); overflow: hidden;
}
.pswitch-opt {
    display: block; width: 100%; padding: 8px 12px; font-size: 13px;
    background: #fff; border: 0; border-bottom: 1px solid #f2f4f7;
    text-align: left; color: #1f2937; cursor: pointer;
}
.pswitch-opt:hover { background: #f6f9fc; }
.pswitch-opt.is-current { background: #eef5fc; font-weight: 600; color: #1c5aa0; }
.pswitch-reset {
    display: block; width: 100%; padding: 7px 12px; font-size: 11px;
    background: #fafbfc; border: 0; text-align: left; color: #a3271a; cursor: pointer;
}
.pswitch-reset:hover { background: #f5eceb; }

/* Нулиране на проиграния сценарий — стои над превключвателя на персони. */
.scnreset { position: fixed; bottom: 48px; right: 12px; z-index: 9998; display: flex; gap: 6px;
            font-family: "Segoe UI", Roboto, Arial, sans-serif; }
.scnreset-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff; color: #5b6474; border: 1px solid #dfe3ec; border-radius: 999px;
    padding: 4px 10px; font-size: 11px; font-weight: 600; cursor: pointer;
    box-shadow: 0 2px 8px rgba(15,20,30,.10);
}
.scnreset-btn i { width: 13px; height: 13px; }
.scnreset-btn:hover { background: #f6f9fc; color: #1f2937; }
/* С проигран сценарий бутонът се откроява — има какво да се нулира. */
.scnreset-btn.is-on { color: #a3271a; border-color: #e7cdc8; background: #fdf6f5; }
.scnreset-btn.is-on:hover { background: #f9ebe8; }

/* WFA — share-profiles dialog + grid toolbar */
.wfa-toolbar { display: flex; gap: 6px; align-items: center; margin-bottom: 10px; }
.wfa-share-list { max-height: 320px; overflow-y: auto; border: 1px solid #eef0f4; border-radius: 6px; }
.wfa-share-row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-bottom: 1px solid #f2f4f7; cursor: pointer; font-size: 14px; }
.wfa-share-row:last-child { border-bottom: 0; }
.wfa-share-row:hover { background: #f6f9fc; }
.wfa-share-row input { width: 16px; height: 16px; accent-color: #1f3a93; flex-shrink: 0; }
.wfa-share-row > span { display: flex; flex-direction: column; line-height: 1.3; }

/* Sticky footer, always BELOW the first fold: the content region is itself at least a full
   viewport tall, so on short pages the footer is pushed just under the fold (needs a small scroll)
   and on long pages it sits under all content. box-sizing:border-box (Bootstrap) means the pages'
   padding-top:75px is inside the 100vh. */
body { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1 0 auto; min-height: 100vh; }

/* Prototype footer: 14px regular text, 12px vertical / 32px horizontal padding, full width. */
footer.footer { flex-shrink: 0; padding: 12px 32px; }
footer.footer .container { max-width: none; width: 100%; margin: 0; padding: 0; font-size: 14px; font-weight: 400; }

/* ---------------------------------------------------------------------------
   Profile chrome (shared by /MyProfile/* and /User/* profile pages) and the
   Development Plans (PDP) screens. Prototype-invented — the real app renders
   the profile header via Views/User/Header/_Index.cshtml, which isn't ported.
   --------------------------------------------------------------------------- */
.mp-head { background: #eef0f3; padding: 24px 0; margin-bottom: 0; }
.mp-head .wfa-page { padding-top: 0; padding-bottom: 0; }
.mp-person { display: flex; align-items: center; gap: 16px; }
.mp-avatar { width: 56px; height: 56px; border-radius: 50%; background: #cee5f6; color: #5c74ad; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.mp-name { font-size: 20px; font-weight: 600; color: #2b303b; }
.mp-role { font-size: 14px; color: #6b7280; }
.wfa-tabs a.menu-disabled { color: #b0b6c0; cursor: default; pointer-events: none; }

/* PDP status dot reuse (trainingReportsStyle.css supplies .ellipse*, we add layout) */
.dev-status { display: inline-flex; align-items: center; }
.dev-plan-summary { gap: 8px; }
.dev-plan-summary > div { min-width: 120px; }
.dev-area-card { border: 1px solid #EAEDF2; border-radius: 8px; margin-bottom: 20px; overflow: hidden; }
.dev-area-head { background: #f6f8fa; padding: 14px 18px; border-bottom: 1px solid #EAEDF2; }
.dev-area-head .dev-area-skill { font-size: 17px; font-weight: 600; color: #2b303b; }
.dev-area-body { padding: 14px 18px; }
.dev-subhead { font-size: 13px; font-weight: 600; text-transform: uppercase; color: #6b7280; margin: 10px 0 6px; }
.dev-levels { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; margin-top: 6px; }
.dev-levels .lbl { color: #6b7280; }

/* ---------------------------------------------------------------------------
   Employee profile tabs (ported from CL.Web/Views/User/*). Classes mirror the
   real app's inline profile styles + trainingReportsStyle.css.
   --------------------------------------------------------------------------- */
/* Header identity card (_UserProfileData) */
.pd-card { display: flex; gap: 24px; align-items: flex-start; }
.pd-avatar { width: 110px; height: 110px; border-radius: 50%; background: #cee5f6; color: #5c74ad; font-weight: 700; font-size: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pd-body { flex: 1; min-width: 0; }
.pd-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid #EAEDF2; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.pd-name { font-size: 26px; font-weight: 600; color: #2b303b; margin: 0; }
.pd-status { display: flex; align-items: center; gap: 8px; color: #2b303b; }
.pd-details { display: flex; flex-wrap: wrap; gap: 8px 64px; }
.pd-details .pd-col { min-width: 320px; }
.pd-row { display: flex; align-items: center; padding: 4px 0; }

/* Info / org structure (profile-data-container, section-heading, info-row) */
.profile-data-container { border: 1px solid #EAEDF2; padding: 0; margin-bottom: 24px; }
.section-heading { background: #36549D; color: #fff; padding: 10px 16px; display: flex; align-items: center; gap: 8px; font-weight: 600; text-transform: uppercase; font-size: 14px; }
.info-row { width: 100%; display: flex; }
.info-row > div { padding: 14px 16px; display: flex; align-items: center; flex: 1; }
.info-row:nth-child(even) { background-color: #f6f8fa; }
.border-end-white { border-right: 1px solid #fff; }
.profile-label { color: #6b7280; margin-right: .5rem; font-size: 15px; white-space: nowrap; }
.profile-value { color: #2b303b; font-size: 15px; font-weight: 600; }
.text-link { color: #36549D; text-decoration: underline; }

/* Employment history */
.eh-head .info-row > div { font-weight: 600; color: #2b303b; background: #eef1f6; }
.position-name { color: #36549D; }
.position-details { display: none; padding: 8px 16px 16px; background: #f8fafc; }
.position-details.expanded { display: block; }
.position-details .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 32px; max-width: 900px; }
.position-toggle { cursor: pointer; margin-right: 8px; color: #6b7280; }

/* Skills */
.soft-skills-header { background: linear-gradient(90deg, #A12E7B 0%, #f2eaef 100%); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; color: #fff; font-weight: 600; text-transform: uppercase; }
.technical-skills-header { background: linear-gradient(90deg, #35539B 0%, #eef1f8 100%); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; color: #fff; font-weight: 600; text-transform: uppercase; }
.skill-cell-container { padding: 16px; border: 1px solid #EAEDF2; margin-bottom: 16px; height: 140px; display: flex; flex-direction: column; justify-content: space-between; }
.skill-name { font-weight: 700; font-size: 16px; color: #2b303b; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.skill-foot { display: flex; align-items: center; justify-content: space-between; }
.skill-level-label { font-weight: 700; font-size: 14px; }
.skill-bar { display: flex; gap: 4px; margin-top: 8px; }
.skill-seg { height: 8px; flex: 1; background: #E1E4E9; border-radius: 2px; }
.skill-fill-tech { background: #35539B; }
.skill-fill-soft { background: #A12E7B; }
.postbank-blue-text { color: #35539B; }
.postbank-purple-text { color: #A12E7B; }

/* Training report stat cards */
.tr-stats { display: flex; justify-content: center; flex-wrap: wrap; margin: 8px 0 24px; }
.tr-stat { display: flex; align-items: center; gap: 18px; padding: 8px 40px; }
.tr-stat + .tr-stat { border-left: 1px solid #E1E4E9; }
.tr-stat .tr-title { font-size: 16px; font-weight: 600; color: #2b303b; }
.tr-stat .tr-sub { font-size: 13px; color: #6b7280; margin-top: 4px; }
.tr-donut { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.tr-donut > div { width: 60px; height: 60px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.tr-overdue { text-align: center; color: #d35230; }
.tr-overdue .num { font-size: 22px; font-weight: 700; }
