:root {
    --bg: #f4f6fb;
    --panel: #ffffff;
    --panel-soft: #f7f8fc;
    --text: #151c32;
    --muted: #71809c;
    --border: #dfe5f0;
    --primary: #5964f2;
    --primary-soft: #eef0ff;
    --danger: #dc3e58;
    --danger-soft: #fff0f3;
    --warning: #d98200;
    --warning-soft: #fff6e8;
    --success: #129764;
    --success-soft: #eaf9f2;
    --sidebar: #172036;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

button,
select {
    font: inherit;
}

.app-shell {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 270px;
    padding: 28px 18px;
    background: var(--sidebar);
    color: white;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 48px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    background:
        linear-gradient(
            135deg,
            #6374ff,
            #8a4fff
        );
}

.brand-title {
    font-size: 22px;
    font-weight: 800;
}

.brand-subtitle {
    color: #aeb8cf;
    font-size: 13px;
    margin-top: 2px;
}

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

.nav-item {
    color: #bbc4d7;
    text-decoration: none;
    padding: 15px 16px;
    border-radius: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    font-weight: 700;
}

.nav-item:hover {
    background: rgba(255,255,255,.06);
    color: white;
}

.nav-item.active {
    background: rgba(89,100,242,.18);
    color: white;
    outline: 1px solid #6470ff;
}

.system-status {
    margin-top: auto;
    padding: 14px;
    background: rgba(255,255,255,.07);
    border-radius: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.system-status strong,
.system-status small {
    display: block;
}

.system-status small {
    color: #aeb8cf;
    margin-top: 3px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #32d68a;
    box-shadow: 0 0 0 5px rgba(50,214,138,.14);
}

.main {
    width: calc(100% - 270px);
    margin-left: 270px;
    padding: 52px 5vw 80px;
}

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

.page-header h1 {
    margin: 8px 0;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -2px;
    line-height: 1;
}

.page-header p {
    margin: 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 17px;
}

.eyebrow {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.version-badge {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.primary-button {
    border: 0;
    color: white;
    background: var(--primary);
    padding: 13px 20px;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 800;
}

.toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 24px;
}

.segmented {
    background: #e9edf5;
    padding: 5px;
    border-radius: 12px;
}

.segment-button {
    padding: 10px 18px;
    border: 0;
    background: transparent;
    color: #697792;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 800;
}

.segment-button.active {
    background: white;
    color: var(--text);
    box-shadow: 0 2px 10px rgba(20,30,60,.08);
}

.period-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
}

.period-field select {
    min-width: 200px;
    padding: 10px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-weight: 700;
}

.panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 22px;
}

.hero-panel {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f9faff
        );
}

.accent-panel {
    border-top: 4px solid var(--primary);
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 6px 0;
    font-size: 28px;
    letter-spacing: -1px;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
}

.section-heading.compact {
    margin-bottom: 18px;
}

.kpi-grid {
    display: grid;
    grid-template-columns:
        repeat(6, minmax(120px, 1fr));
    gap: 12px;
}

.kpi-card {
    background: var(--panel-soft);
    border: 1px solid #edf0f6;
    border-radius: 15px;
    padding: 18px;
}

.kpi-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    font-weight: 900;
}

.kpi-value {
    font-size: 34px;
    font-weight: 900;
    margin: 8px 0 4px;
}

.kpi-hint {
    font-size: 12px;
    color: var(--muted);
}

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

.attention-card {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    border-left: 5px solid var(--warning);
}

.attention-card.critical {
    border-left-color: var(--danger);
}

.attention-card h3 {
    margin: 0 0 8px;
}

.attention-meta {
    color: var(--muted);
    font-size: 13px;
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.topic-header {
    display: grid;
    grid-template-columns:
        1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 18px;
}

.topic-name {
    font-weight: 900;
    font-size: 18px;
}

.topic-count {
    font-size: 24px;
    font-weight: 900;
}

.topic-stat {
    min-width: 80px;
    text-align: center;
}

.topic-stat span {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
}

.topic-stat strong {
    display: block;
    margin-top: 4px;
}

.issue-list {
    background: #fafbfe;
    border-top: 1px solid var(--border);
    padding: 12px 18px;
}

.issue-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    font-size: 13px;
}

.issue-row + .issue-row {
    border-top: 1px solid #edf0f5;
}

.two-column {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 22px;
}

.distribution-list,
.action-list,
.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.distribution-row,
.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px;
    background: var(--panel-soft);
    border-radius: 12px;
}

.distribution-row strong,
.action-row strong {
    font-size: 20px;
}

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

.reason-card {
    padding: 18px;
    background: var(--panel-soft);
    border-radius: 14px;
}

.reason-card strong {
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.reason-card span {
    color: var(--muted);
}

.recommendation-card {
    display: grid;
    grid-template-columns:
        44px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
}

.recommendation-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 900;
}

.recommendation-card h3 {
    margin: 0 0 5px;
}

.recommendation-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.signal-count {
    text-align: right;
    font-size: 12px;
    color: var(--muted);
}

.signal-count strong {
    display: block;
    color: var(--text);
    font-size: 24px;
}

.data-quality {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0,1fr));
    gap: 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
}

.data-quality div {
    padding: 0 14px;
}

.data-quality div + div {
    border-left: 1px solid var(--border);
}

.data-quality span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
}

.data-quality strong {
    display: block;
    margin-top: 5px;
    font-size: 20px;
}

.state-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
}

.error-state {
    color: var(--danger);
    background: var(--danger-soft);
}

.empty-state {
    color: var(--muted);
    padding: 20px;
    text-align: center;
    background: var(--panel-soft);
    border-radius: 12px;
}

.hidden {
    display: none !important;
}

@media (max-width: 1200px) {
    .kpi-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .attention-grid,
    .reason-grid {
        grid-template-columns:
            1fr 1fr;
    }
}

@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    .main {
        width: 100%;
        margin-left: 0;
        padding: 28px 18px;
    }

    .page-header,
    .toolbar {
        flex-direction: column;
    }

    .kpi-grid,
    .attention-grid,
    .reason-grid,
    .two-column,
    .data-quality {
        grid-template-columns: 1fr;
    }

    .topic-header {
        grid-template-columns: 1fr 1fr;
    }

    .data-quality div + div {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 12px;
    }
}

/* ================================================================
   MANAGEMENT V2.1 — VISUAL MANAGEMENT DASHBOARD
   ================================================================ */

.sidebar {
    width: 290px;
    min-width: 290px;
}

.nav .nav-item {
    box-sizing: border-box;
    white-space: nowrap;
    min-height: 56px;
}

/* ------------------------------------------------
   Global visual hierarchy
   ------------------------------------------------ */

.management-commentary {
    margin-top: 24px;
    padding: 24px 28px;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(88, 96, 255, 0.12),
            rgba(88, 96, 255, 0.035)
        );
    border: 1px solid rgba(88, 96, 255, 0.22);
}

.management-commentary-label {
    display: block;
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;

    color: #5860ff;
}

.management-commentary h3 {
    margin: 0 0 8px;

    font-size: 22px;
    line-height: 1.25;
}

.management-commentary p {
    margin: 0;

    font-size: 16px;
    line-height: 1.55;

    color: #66728e;
}

/* ------------------------------------------------
   KPI accents
   ------------------------------------------------ */

#outcomeKpis .kpi-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#outcomeKpis .kpi-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(32, 42, 78, 0.08);
}

#outcomeKpis .kpi-card:nth-child(1) {
    border-top: 4px solid #5860ff;
}

#outcomeKpis .kpi-card:nth-child(2) {
    border-top: 4px solid #20a86b;
}

#outcomeKpis .kpi-card:nth-child(3) {
    border-top: 4px solid #f2a62b;
}

#outcomeKpis .kpi-card:nth-child(4) {
    border-top: 4px solid #ef476f;
}

#outcomeKpis .kpi-card:nth-child(5) {
    border-top: 4px solid #8d97ad;
}

/* ------------------------------------------------
   Distribution charts
   ------------------------------------------------ */

.distribution-row {
    position: relative;
    overflow: hidden;

    min-height: 58px;
    padding: 0 18px;

    border-radius: 14px;
}

.distribution-row::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(88, 96, 255, 0.07),
            transparent
        );

    pointer-events: none;
}

.distribution-row span,
.distribution-row strong {
    position: relative;
    z-index: 2;
}

/* ------------------------------------------------
   Topic visual ranking
   ------------------------------------------------ */

.topic-card {
    position: relative;
    overflow: hidden;
}

.topic-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: var(--topic-share, 0%);
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #5860ff,
            #8a65ff
        );

    border-radius: 0 4px 4px 0;
}

.topic-card:nth-child(-n+3) {
    border-color:
        rgba(88, 96, 255, 0.35);
}

.topic-card:nth-child(1)::after {
    height: 6px;
}

/* ------------------------------------------------
   Management attention
   ------------------------------------------------ */

.attention-card.critical {
    background:
        linear-gradient(
            135deg,
            rgba(239, 71, 111, 0.08),
            #ffffff
        );
}

.attention-card.critical h3 {
    color: #b82e4e;
}

/* ------------------------------------------------
   Recommendations
   ------------------------------------------------ */

.recommendation-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.recommendation-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(32, 42, 78, 0.07);
}

.recommendation-number {
    background:
        linear-gradient(
            135deg,
            #5860ff,
            #7c64ff
        ) !important;

    color: #ffffff !important;
}

/* ------------------------------------------------
   Data quality footer
   ------------------------------------------------ */

.data-quality,
.data-quality-grid {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8f9ff
        );
}

/* ------------------------------------------------
   Responsive sidebar
   ------------------------------------------------ */

@media (max-width: 1100px) {

    .sidebar {
        width: 250px;
        min-width: 250px;
    }

    .nav .nav-item {
        font-size: 15px;
    }
}

/* ===== MANAGEMENT V2.1 VISUAL DASHBOARD END ===== */

/* MANAGEMENT_V22_EXECUTIVE_DASHBOARD_CSS_START */

.v22-section {
    margin-top: 26px;
    padding: 30px;

    background: #ffffff;

    border:
        1px solid
        rgba(206, 213, 232, 0.9);

    border-radius: 24px;
}

.v22-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 24px;
}

.v22-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #5860ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.v22-section-header h2 {
    margin: 0;

    font-size: 27px;
    line-height: 1.2;

    color: #151c35;
}

.v22-section-header p {
    margin:
        7px
        0
        0;

    color: #71809f;

    font-size: 15px;
    line-height: 1.5;
}

.v22-section-total {
    min-width: 110px;

    text-align: right;
}

.v22-section-total strong {
    display: block;

    color: #151c35;

    font-size: 32px;
    line-height: 1;
}

.v22-section-total span {
    display: block;

    margin-top: 6px;

    color: #71809f;

    font-size: 13px;
}

/* CHANGES */

.v22-change-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 14px;
}

.v22-change-card {
    min-height: 150px;

    padding: 20px;

    background: #f7f8fc;

    border:
        1px solid
        #e7eaf4;

    border-radius: 18px;
}

.v22-change-card.v22-tone-positive {
    background:
        linear-gradient(
            145deg,
            rgba(
                31,
                169,
                105,
                0.09
            ),
            #ffffff
        );
}

.v22-change-card.v22-tone-negative {
    background:
        linear-gradient(
            145deg,
            rgba(
                239,
                71,
                111,
                0.09
            ),
            #ffffff
        );
}

.v22-change-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
}

.v22-change-icon {
    display: flex;

    width: 34px;
    height: 34px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eceeff;

    color: #5860ff;

    font-weight: 900;
}

.v22-change-icon.v22-tone-positive {
    background:
        rgba(
            31,
            169,
            105,
            0.12
        );

    color: #168354;
}

.v22-change-icon.v22-tone-negative {
    background:
        rgba(
            239,
            71,
            111,
            0.12
        );

    color: #c52f52;
}

.v22-change-delta {
    font-size: 13px;
    font-weight: 800;

    color: #5860ff;
}

.v22-change-value {
    display: block;

    margin-bottom: 8px;

    color: #151c35;

    font-size: 30px;
}

.v22-change-card h3 {
    margin: 0 0 7px;

    color: #202941;

    font-size: 15px;
    line-height: 1.35;
}

.v22-change-card p {
    margin: 0;

    color: #8490a9;

    font-size: 12px;
}

/* OUTCOME CHART */

.v22-chart-body {
    display: grid;

    gap: 20px;
}

.v22-chart-row {
    display: grid;

    grid-template-columns:
        260px
        minmax(
            0,
            1fr
        );

    gap: 22px;

    align-items: center;
}

.v22-chart-label {
    display: grid;

    grid-template-columns:
        1fr
        auto
        58px;

    align-items: baseline;

    gap: 10px;
}

.v22-chart-label span {
    color: #202941;

    font-size: 15px;
    font-weight: 700;
}

.v22-chart-label strong {
    color: #151c35;

    font-size: 22px;
}

.v22-chart-label small {
    text-align: right;

    color: #7a87a3;

    font-size: 12px;
}

.v22-chart-track {
    overflow: hidden;

    height: 14px;

    background: #eef0f7;

    border-radius: 999px;
}

.v22-chart-bar {
    height: 100%;

    border-radius: inherit;

    transition:
        width
        0.35s
        ease;
}

.v22-bar-positive {
    background:
        linear-gradient(
            90deg,
            #1fa969,
            #4ac58b
        );
}

.v22-bar-warning {
    background:
        linear-gradient(
            90deg,
            #f2a62b,
            #ffc95f
        );
}

.v22-bar-negative {
    background:
        linear-gradient(
            90deg,
            #ef476f,
            #ff7897
        );
}

.v22-bar-neutral {
    background:
        linear-gradient(
            90deg,
            #8792aa,
            #b2bacb
        );
}

/* RISKS */

.v22-risk-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 16px;
}

.v22-risk-card {
    display: flex;

    gap: 18px;

    padding: 22px;

    background: #f8f9fc;

    border:
        1px solid
        #e5e8f2;

    border-radius: 18px;
}

.v22-risk-card.v22-risk-high,
.v22-risk-card.v22-risk-critical {
    background:
        linear-gradient(
            145deg,
            rgba(
                239,
                71,
                111,
                0.08
            ),
            #ffffff
        );

    border-color:
        rgba(
            239,
            71,
            111,
            0.25
        );
}

.v22-risk-number {
    display: flex;

    flex:
        0 0
        58px;

    width: 58px;
    height: 58px;

    align-items: center;
    justify-content: center;

    background: #eef0ff;

    border-radius: 16px;

    color: #5860ff;

    font-size: 24px;
    font-weight: 900;
}

.v22-risk-high
.v22-risk-number,
.v22-risk-critical
.v22-risk-number {
    background:
        rgba(
            239,
            71,
            111,
            0.12
        );

    color: #c52f52;
}

.v22-risk-content h3 {
    margin:
        0
        0
        10px;

    color: #151c35;

    font-size: 18px;
    line-height: 1.3;
}

.v22-risk-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 10px;
}

.v22-risk-meta span {
    padding:
        5px
        9px;

    background: #eef0f6;

    border-radius: 8px;

    color: #6d7893;

    font-size: 11px;
}

.v22-risk-content > strong {
    color: #a62b48;

    font-size: 13px;
}

/* TOPIC TOGGLE */

.v22-topic-toggle {
    display: block;

    width: 100%;

    margin-top: 14px;

    padding:
        14px
        18px;

    background: #f4f5ff;

    border:
        1px solid
        rgba(
            88,
            96,
            255,
            0.22
        );

    border-radius: 14px;

    color: #5860ff;

    cursor: pointer;

    font: inherit;
    font-weight: 800;

    transition:
        background
        0.2s
        ease;
}

.v22-topic-toggle:hover {
    background: #ebeefe;
}

/* EMPTY / GOOD */

.v22-empty,
.v22-good-state {
    padding: 24px;

    border-radius: 16px;

    background: #f7f8fc;

    color: #75819d;

    text-align: center;
}

.v22-good-state {
    background:
        rgba(
            31,
            169,
            105,
            0.07
        );

    color: #168354;
}

/* DATA QUALITY COMPACT */

#dataQuality,
.data-quality {
    margin-top: 20px;
}

/* RESPONSIVE */

@media (
    max-width: 1250px
) {

    .v22-change-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }
}

@media (
    max-width: 900px
) {

    .v22-risk-grid {
        grid-template-columns:
            1fr;
    }

    .v22-chart-row {
        grid-template-columns:
            1fr;
    }
}

/* MANAGEMENT_V22_EXECUTIVE_DASHBOARD_CSS_END */

/* MANAGEMENT_V23_DIAGNOSTICS_CLEANUP_CSS_START */

/* ---------------------------------------------
   Remove outcome duplicates from primary flow
   --------------------------------------------- */

.v23-hidden-duplicate {
    display: none !important;
}

/* ---------------------------------------------
   Compact unavailable period comparison
   --------------------------------------------- */

#executiveChanges.v23-compact-unavailable {
    padding:
        18px
        26px;

    margin-top: 20px;
}

#executiveChanges.v23-compact-unavailable
.v22-section-header {
    margin-bottom: 10px;
}

#executiveChanges.v23-compact-unavailable
.v22-section-header h2 {
    font-size: 20px;
}

#executiveChanges.v23-compact-unavailable
.v22-empty {
    padding: 12px 16px;

    text-align: left;

    font-size: 13px;
}

/* ---------------------------------------------
   Compact empty company actions
   --------------------------------------------- */

.v23-compact-empty-section {
    padding-bottom: 22px !important;
}

.v23-compact-empty-section
.v23-empty-badge {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 12px;

    padding:
        16px
        20px;

    background: #f7f8fc;

    border:
        1px solid
        #e7eaf3;

    border-radius: 14px;
}

.v23-empty-badge strong {
    flex: 0 0 auto;

    color: #202941;

    font-size: 14px;
}

.v23-empty-badge span {
    color: #78849e;

    font-size: 13px;
    line-height: 1.45;
}

/* ---------------------------------------------
   Backend diagnostics contract notice
   --------------------------------------------- */

.v23-diagnostics-notice {
    margin-top: 22px;

    padding:
        22px
        26px;

    background:
        linear-gradient(
            135deg,
            rgba(
                88,
                96,
                255,
                0.055
            ),
            #ffffff
        );

    border:
        1px dashed
        rgba(
            88,
            96,
            255,
            0.32
        );

    border-radius: 18px;
}

.v23-diagnostics-notice
.v23-notice-label {
    display: block;

    margin-bottom: 7px;

    color: #5860ff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.14em;
}

.v23-diagnostics-notice
> strong {
    display: block;

    margin-bottom: 6px;

    color: #202941;

    font-size: 17px;
}

.v23-diagnostics-notice
p {
    margin: 0;

    color: #74809a;

    font-size: 13px;
    line-height: 1.5;
}

.v23-diagnostics-notice
.v23-contract-ready {
    border-style: solid;
}

/* ---------------------------------------------
   Better primary flow spacing
   --------------------------------------------- */

#managementCommentary
+ #executiveChanges {
    margin-top: 20px;
}

#outcomeVisualChart {
    margin-top: 20px;
}

#riskOverview {
    margin-top: 20px;
}

/* MANAGEMENT_V23_DIAGNOSTICS_CLEANUP_CSS_END */
