:root {
    --dsh-bg-body: #f8fafc;
    --dsh-bg-card: #ffffff;
    --dsh-text-main: #1e293b;
    --dsh-text-muted: #64748b;
    --dsh-border-light: #e2e8f0;
    /* Core Palette based on design */
    --dsh-purple: #8b5cf6;
    --dsh-purple-light: #f3e8ff;
    --dsh-orange: #f59e0b;
    --dsh-orange-light: #fef3c7;
    --dsh-green: #10b981;
    --dsh-green-light: #d1fae5;
    --dsh-red: #ef4444;
    --dsh-red-light: #fee2e2;
    --dsh-teal: #14b8a6;
    --dsh-teal-light: #ccfbf1;
    --dsh-blue: #3b82f6;
    --dsh-blue-light: #dbeafe;
    --dsh-pink: #ec4899;
    --dsh-pink-light: #fce7f3;
}

.dsh-container {
    max-width: 1500px;
    margin: 0 auto;
}

.dsh-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dsh-text-main);
    margin-bottom: 1.25rem;
}

/* --- Welcome Banner --- */
.dsh-welcome-banner {
    background: linear-gradient(180deg, #FFFFFF,#FAE7FF 100%);
    border: 1px solid #d8b4e2;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(216, 180, 226, 0.15);
    margin-bottom: 1.5rem;
}

.dsh-welcome-avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.dsh-welcome-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .dsh-welcome-title span {
        color: var(--dsh-purple);
    }

.dsh-welcome-sub {
    font-size: 0.85rem;
    color: var(--dsh-purple);
    margin: 0;
    font-weight: 500;
}

/* --- Top KPI Grid (4x2) --- */
.dsh-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 1.5rem;
}

.dsh-kpi-card {
    background: linear-gradient(90deg, #F8F8F8, #E1DDFF 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-card1 {
    background: linear-gradient(90deg, #F8F8F8, #FFEBDD 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-card2 {
    background: linear-gradient(90deg, #F8F8F8, #DEFFDD 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-card3 {
    background: linear-gradient(90deg, #F8F8F8, #FFDDDD 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-card4 {
    background: linear-gradient(90deg, #F8F8F8, #DDF8FF 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-card5 {
    background: linear-gradient(90deg, #F8F8F8, #DDFFEB 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-card6 {
    background: linear-gradient(90deg, #F8F8F8, #FFFFDD 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-card7 {
    background: linear-gradient(90deg, #F8F8F8,#F3DDFF 100%);
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left-width: 4px;
}

.dsh-kpi-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dsh-kpi-lbl {
    font-size: 0.8rem;
    color: var(--dsh-text-muted);
    font-weight: 600;
}

.dsh-kpi-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dsh-text-main);
    line-height: 1;
}

.dsh-kpi-sub {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

.dsh-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* KPI Colors */
.kpi-purple {
    border-left-color: var(--dsh-purple);
}

    .kpi-purple .dsh-kpi-icon {
        background: var(--dsh-purple-light);
        color: var(--dsh-purple);
    }

    .kpi-purple .dsh-kpi-sub {
        color: var(--dsh-green);
    }

.kpi-orange {
    border-left-color: var(--dsh-orange);
}

    .kpi-orange .dsh-kpi-icon {
        background: var(--dsh-orange-light);
        color: var(--dsh-orange);
    }

    .kpi-orange .dsh-kpi-sub {
        color: var(--dsh-red);
    }

.kpi-green {
    border-left-color: var(--dsh-green);
}

    .kpi-green .dsh-kpi-icon {
        background: var(--dsh-green-light);
        color: var(--dsh-green);
    }

    .kpi-green .dsh-kpi-sub {
        color: var(--dsh-green);
    }

.kpi-red {
    border-left-color: var(--dsh-red);
}

    .kpi-red .dsh-kpi-icon {
        background: var(--dsh-red-light);
        color: var(--dsh-red);
    }

    .kpi-red .dsh-kpi-sub {
        color: var(--dsh-red);
    }

.kpi-teal {
    border-left-color: var(--dsh-teal);
}

    .kpi-teal .dsh-kpi-icon {
        background: var(--dsh-teal-light);
        color: var(--dsh-teal);
    }

    .kpi-teal .dsh-kpi-sub {
        color: var(--dsh-green);
    }

/* --- Standard Card Layout --- */
.dsh-card {
    background: var(--dsh-bg-card);
    border: 1px solid var(--dsh-border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    margin-bottom: 1.5rem;
}

.dsh-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.dsh-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dsh-text-main);
    margin: 0;
}

/* --- Workflow Stepper & Stats --- */
.dsh-workflow-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 10px;
}

.dsh-wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    background: #fff;
    padding: 0 10px;
}

.dsh-wf-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid;
    background: #fff;
}

.dsh-wf-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dsh-text-main);
    text-align: center;
    line-height: 1.2;
}

.dsh-wf-sub {
    font-size: 0.7rem;
    color: var(--dsh-text-muted);
    font-weight: 500;
}

.dsh-wf-line {
    flex-grow: 1;
    height: 2px;
    background: var(--dsh-border-light);
    margin: 0 -15px;
    z-index: 1;
    transform: translateY(-15px);
}

/* Workflow Specific Colors */
.wf-done .dsh-wf-circle {
    border-color: var(--dsh-green);
    color: var(--dsh-green);
}

.wf-mo .dsh-wf-circle {
    border-color: var(--dsh-blue);
    color: var(--dsh-blue);
}

.wf-rm .dsh-wf-circle {
    border-color: var(--dsh-purple);
    color: var(--dsh-purple);
}

.wf-smm .dsh-wf-circle {
    border-color: var(--dsh-orange);
    color: var(--dsh-orange);
}

.wf-sdwa .dsh-wf-circle {
    border-color: var(--dsh-red);
    color: var(--dsh-red);
}

.dsh-wf-line.done {
    background-color: var(--dsh-green);
    height: 3px;
}

.dsh-workflow-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.dsh-wf-statbox {
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dsh-wf-statval {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.dsh-wf-statlbl {
    font-size: 0.8rem;
    font-weight: 600;
}

.ws-blue {
    background: linear-gradient(90deg, #F8F8F8, #DDF2FF 100%);
    color: var(--dsh-blue);
    border: 1px solid #bfdbfe;
}

.ws-purple {
    background: linear-gradient(90deg, #F8F8F8, #FFDDFB 100%);
    color: var(--dsh-purple);
    border: 1px solid #e9d5ff;
}

.ws-orange {
    background: linear-gradient(90deg, #F8F8F8, #FFF9DD 100%);
    border: 1px solid #fef08a;
}

.ws-teal {
    background: linear-gradient(90deg, #F8F8F8, #DDFFFF 100%);
    color: #0d9488;
    border: 1px solid #99f6e4;
}

.ws-red {
    background: linear-gradient(90deg, #F8F8F8, #FFDDDD 100%);
    color: var(--dsh-red);
    border: 1px solid #fecaca;
}

.ws-brown {
    background: linear-gradient(90deg, #F8F8F8, #FFF9DD 100%);
    color: #9a3412;
    border: 1px solid #ffedd5;
}

/* --- Tables --- */
.dsh-search-box {
    position: relative;
    width: 250px;
}

    .dsh-search-box i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--dsh-text-muted);
        font-size: 0.85rem;
    }

.dsh-search-input {
    width: 100%;
    padding: 8px 12px 8px 32px;
    background: #f8fafc;
    border: 1px solid var(--dsh-border-light);
    border-radius: 6px;
    font-size: 0.8rem;
    outline: none;
}

    .dsh-search-input:focus {
        border-color: var(--dsh-blue);
        background: #fff;
    }

.dsh-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

    .dsh-table th {
        background: #f8fafc;
        color: var(--dsh-text-muted);
        font-weight: 600;
        font-size: 0.75rem;
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid var(--dsh-border-light);
        text-transform: uppercase;
    }

    .dsh-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
        color: var(--dsh-text-main);
        border-bottom: 1px solid var(--dsh-border-light);
        vertical-align: middle;
        font-weight: 500;
    }

    .dsh-table tr:last-child td {
        border-bottom: none;
    }

.dsh-avatar-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dsh-td-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.dsh-pill {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
}

.pill-orange {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #ffedd5;
}

.pill-red {
    background: var(--dsh-red-light);
    color: var(--dsh-red);
}

.pill-green {
    background: var(--dsh-green-light);
    color: var(--dsh-green);
}

.dsh-action-icons {
    display: flex;
    gap: 10px;
    font-size: 1.1rem;
}

    .dsh-action-icons i {
        cursor: pointer;
        transition: 0.2s;
    }

.icon-view {
    color: var(--dsh-blue);
}

.icon-approve {
    color: var(--dsh-green);
}

.icon-reject {
    color: var(--dsh-red);
}

.icon-download {
    color: var(--dsh-purple);
}

/* --- Middle Grid (Charts) --- */
.dsh-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.dsh-chart-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.dsh-donut-container {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient( #86efac 0deg 78deg, transparent 78deg 82deg, #c084fc 82deg 148deg, transparent 148deg 152deg, #fcd34d 152deg 218deg, transparent 218deg 222deg, #93c5fd 222deg 288deg, transparent 288deg 292deg, #f472b6 292deg 328deg, transparent 328deg 332deg, #9ca3af 332deg 356deg, transparent 356deg 360deg );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dsh-donut-inner {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
}

.dsh-legend-list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dsh-legend-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--dsh-border-light);
}

    .dsh-legend-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.dsh-legend-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dsh-text-muted);
    font-weight: 500;
}

.dsh-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dsh-legend-val {
    font-weight: 600;
    color: var(--dsh-text-main);
}

.dsh-legend-pct {
    color: var(--dsh-text-muted);
    font-weight: 600;
    text-align: right;
    min-width: 40px;
}

/* --- Custom Line Chart Tooltip & Interaction Styles --- */
.dsh-line-chart-area {
    position: relative;
    height: 240px;
    margin-top: 20px;
}

.dsh-chart-y-axis {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
    width: 30px;
}

.dsh-chart-x-axis {
    position: absolute;
    left: 30px;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
}

.dsh-chart-grid-lines {
    position: absolute;
    left: 30px;
    right: 0;
    top: 8px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dsh-grid-line {
    border-top: 1px dashed #e5e7eb;
    width: 100%;
    height: 0;
}

    .dsh-grid-line:last-child {
        border-top: 1px solid #d1d5db;
    }

.dsh-svg-wrapper {
    position: absolute;
    left: 30px;
    right: 0;
    top: 8px;
    bottom: 30px;
    overflow: visible;
}

/* Interactive SVG elements */
.dsh-data-point {
    fill: var(--dsh-red);
    cursor: pointer;
    transition: r 0.2s ease, stroke-width 0.2s ease;
    pointer-events: all;
}

.dsh-hover-area {
    fill: transparent;
    cursor: pointer;
    pointer-events: all;
}

.dsh-focus-line {
    stroke: #9ca3af;
    stroke-width: 1;
    stroke-dasharray: 4 4;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.dsh-data-point-active {
    fill: var(--dsh-red);
    stroke: #ffffff;
    stroke-width: 2.5;
    r: 6;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

/* SVG Hover Triggers */
.dsh-group-aug:hover .dsh-focus-line {
    opacity: 1;
}

.dsh-group-aug:hover .dsh-data-point-active {
    opacity: 1;
}

/* Tooltip HTML Positioning and Reveal */
.dsh-tooltip-container {
    position: absolute;
    left: 30px;
    right: 0;
    top: 8px;
    bottom: 30px;
    pointer-events: none;
}

.dsh-chart-tooltip {
    position: absolute;
    top: 20px;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    z-index: 10;
    width: max-content;
    min-width: 140px;
    opacity: 0;
    transition: opacity 0.2s ease, top 0.2s ease;
    pointer-events: none;
}

/* Trigger the tooltip display using the :has pseudo-class */
.dsh-svg-wrapper:has(.dsh-group-aug:hover) + .dsh-tooltip-container .dsh-tooltip-aug {
    opacity: 1;
    top: 15px;
}

.dsh-tooltip-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--dsh-text-main);
}

.dsh-tooltip-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 4px;
    font-weight: 600;
    gap: 12px;
}

.dsh-tooltip-lbl {
    font-weight: 600;
}

.dsh-tooltip-val {
    font-weight: 600;
    color: var(--dsh-text-main);
}

.dsh-chart-bottom-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dsh-cb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dsh-cb-icon {
    display: flex;
    align-items: center;
    gap: 2px;
}

.dsh-cb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1.5px solid;
    background: #fff;
}

.dsh-cb-line {
    width: 12px;
    height: 2px;
}

/* Small 5-col Dealer KPIs */
.dsh-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 1.5rem;
}

.dsh-mini-kpi {
    background: #f8fafc;
    border: 1px solid var(--dsh-border-light);
    border-radius: 8px;
    padding: 16px;
    border-left-width: 4px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dsh-mkpi-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dsh-mkpi-lbl {
    font-size: 0.75rem;
    color: var(--dsh-text-muted);
    font-weight: 600;
}

.dsh-mkpi-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dsh-text-main);
    line-height: 1;
}

.dsh-mkpi-icon {
    color: var(--dsh-text-muted);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* --- Bottom 4-Grid --- */
.dsh-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}

    .dsh-bottom-grid > .dsh-card {
        min-width: 0; /* lets the card actually shrink to its grid track */
    }

.dsh-gh-box-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.dsh-bottom-grid .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 16px;
}

.dsh-bottom-grid .dsh-table {
    min-width: 0; /* override the 900px from .dsh-table */
    font-size: 0.72rem;
}

    .dsh-bottom-grid .dsh-table th {
        padding: 10px 8px;
        font-size: 0.68rem;
        letter-spacing: 0.5px;
    }

    .dsh-bottom-grid .dsh-table td {
        padding: 10px 8px;
        font-size: 0.72rem;
    }

.dsh-bottom-grid .dsh-td-avatar {
    width: 24px;
    height: 24px;
}

.dsh-gh-box {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .dsh-gh-box .lbl {
        font-size: 0.75rem;
        color: var(--dsh-text-muted);
        font-weight: 600;
    }

    .dsh-gh-box .val {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dsh-text-main);
    }

.dsh-progress-row {
    margin-bottom: 16px;
}

.dsh-pr-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.dsh-pr-track {
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.dsh-pr-fill {
    height: 100%;
    border-radius: 4px;
}

/* Timeline */
.dsh-timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
    margin-top: 10px;
}

.dsh-tl-item {
    position: relative;
    margin-bottom: 20px;
}

    .dsh-tl-item::before {
        content: '';
        position: absolute;
        left: -26px;
        top: 4px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--dsh-blue);
        border: 2px solid #fff;
    }

.dsh-tl-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--dsh-text-main);
}

.dsh-tl-time {
    font-size: 0.75rem;
    color: var(--dsh-text-muted);
    margin: 0;
}

/* Quick Actions */
.dsh-qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dsh-qa-card {
    border: 1px solid var(--dsh-border-light);
    border-radius: 10px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

    .dsh-qa-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

.dsh-qa-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.dsh-qa-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--dsh-text-main);
}

.dsh-qa-sub {
    font-size: 0.7rem;
    color: var(--dsh-text-muted);
    margin: 0;
}

@media (max-width: 1200px) {
    .dsh-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dsh-grid-2 {
        grid-template-columns: 1fr;
    }

    .dsh-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .dsh-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dsh-kpi-grid {
        grid-template-columns: 1fr;
    }

    .dsh-grid-5 {
        grid-template-columns: 1fr 1fr;
    }

    .dsh-workflow-stepper {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .dsh-wf-line {
        display: none;
    }

    .dsh-workflow-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dsh-chart-flex {
        flex-direction: column;
        gap: 20px;
    }
}

