:root {
    --sdb-orange: #ff620d;
    --sdb-orange-dark: #e55300;
    --sdb-text: #1d2736;
    --sdb-muted: #7d8797;
    --sdb-border: #e4e8ee;
    --sdb-soft: #f7f8fa;
    --sdb-card: #ffffff;
    --sdb-shadow:
        0 1px 2px rgba(16, 24, 40, .04),
        0 7px 22px rgba(16, 24, 40, .07);
}


/* =========================================================
   PAGE
========================================================= */

.sdb-page {
    width: 100%;
    min-height: calc(100vh - 130px);
    color: var(--sdb-text);
}


.sdb-page *,
.sdb-page *::before,
.sdb-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   LOADING
========================================================= */

.sdb-loading {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--sdb-border);
    border-radius: 12px;
    background: #fff;
    color: var(--sdb-muted);
    box-shadow: var(--sdb-shadow);
}


.sdb-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid #ffe4d5;
    border-top-color: var(--sdb-orange);
    border-radius: 50%;
    animation: sdb-spin .7s linear infinite;
}


@keyframes sdb-spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   CLEAN HEADER — NO GRADIENT
========================================================= */

.sdb-dashboard-header {
    position: relative;
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 12px;
    padding: 24px 26px 24px 30px;
    border: 1px solid var(--sdb-border);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--sdb-shadow);
}


.sdb-dashboard-header::before {
    content: "";
    position: absolute;
    top: 21px;
    bottom: 21px;
    left: 0;
    width: 4px;
    border-radius: 0 5px 5px 0;
    background: var(--sdb-orange);
}


.sdb-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--sdb-orange);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
}


.sdb-dashboard-header h1 {
    margin: 0;
    color: #182230;
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.1;
    letter-spacing: -.025em;
    text-shadow:
        0 1px 0 rgba(255,255,255,.9),
        0 1px 2px rgba(15,23,42,.08);
}


.sdb-dashboard-header p {
    max-width: 760px;
    margin: 7px 0 0;
    color: #727d8e;
    font-size: 11px;
    line-height: 1.6;
}


.sdb-dashboard-header p strong {
    color: #344054;
}


.sdb-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}


.sdb-button {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    background: #fff;
    color: #445065;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(16,24,40,.04);
}


.sdb-button:hover {
    border-color: #ffbc98;
    color: var(--sdb-orange);
    background: #fffaf7;
}


.sdb-button-primary {
    border-color: var(--sdb-orange);
    background: var(--sdb-orange);
    color: #fff;
}


.sdb-button-primary:hover {
    border-color: var(--sdb-orange-dark);
    background: var(--sdb-orange-dark);
    color: #fff;
}


/* =========================================================
   STATUS STRIP
========================================================= */

.sdb-status-strip {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 19px;
    padding: 9px 13px;
    border: 1px solid var(--sdb-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(16,24,40,.035);
}


.sdb-status-left {
    display: flex;
    align-items: center;
    gap: 9px;
}


.sdb-status-check {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #a06a00;
    background: #fff4d6;
}


.sdb-status-check.active {
    color: #087443;
    background: #eafaf2;
}


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


.sdb-status-left small {
    color: #98a2b3;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}


.sdb-status-left strong {
    margin-top: 2px;
    color: #344054;
    font-size: 10px;
}


.sdb-status-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}


.sdb-status-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sdb-orange);
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
}


/* =========================================================
   ERROR
========================================================= */

.sdb-error {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fff4f5;
    color: #b42318;
    font-size: 10px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.sdb-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}


.sdb-section-heading h2 {
    margin: 0;
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.01em;
}


.sdb-section-heading p {
    margin: 3px 0 0;
    color: #8b95a5;
    font-size: 8px;
}


.sdb-section-heading > span {
    color: #98a2b3;
    font-size: 8px;
}


/* =========================================================
   CLEAN KPI CARDS — SOLID WHITE, NO GRADIENT
========================================================= */

.sdb-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 17px;
}


.sdb-metric-card {
    --tone: #ff620d;
    --tone-soft: #fff1e8;

    position: relative;
    min-width: 0;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 14px 15px 13px;
    border: 1px solid #e4e8ee;
    border-radius: 12px;
    background: #fff;
    color: #263141;
    text-decoration: none;
    box-shadow:
        0 2px 4px rgba(16,24,40,.035),
        0 9px 24px rgba(16,24,40,.075);
    transition:
        transform .16s ease,
        border-color .16s ease,
        box-shadow .16s ease;
}


.sdb-metric-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--tone) 28%, #e4e8ee);
    box-shadow:
        0 3px 7px rgba(16,24,40,.05),
        0 14px 30px rgba(16,24,40,.10);
}


.sdb-metric-accent {
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: var(--tone);
}


.sdb-metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 11px;
}


.sdb-metric-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--tone);
    background: var(--tone-soft);
    font-size: 13px;
}


.sdb-metric-open {
    color: #c0c6d0;
    font-size: 9px;
}


.sdb-metric-card:hover .sdb-metric-open {
    color: var(--tone);
}


.sdb-metric-value {
    display: block;
    overflow: hidden;
    color: #172033;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.08;
    letter-spacing: -.025em;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-shadow:
        0 1px 0 #fff,
        0 1px 2px rgba(15,23,42,.12);
}


.sdb-metric-label {
    display: block;
    margin-top: 6px;
    color: #364152;
    font-size: 9px;
    font-weight: 850;
    text-shadow:
        0 1px 0 #fff,
        0 1px 1px rgba(15,23,42,.05);
}


.sdb-metric-card small {
    display: block;
    margin-top: auto;
    padding-top: 7px;
    overflow: hidden;
    color: #929baa;
    font-size: 7.5px;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* Card tones — solid accents only */

.sdb-tone-orange { --tone: #ff620d; --tone-soft: #fff1e8; }
.sdb-tone-teal { --tone: #0f9f8f; --tone-soft: #e8faf7; }
.sdb-tone-purple { --tone: #7c3aed; --tone-soft: #f2ebff; }
.sdb-tone-red { --tone: #dc3545; --tone-soft: #fff0f2; }
.sdb-tone-blue { --tone: #2563eb; --tone-soft: #edf4ff; }
.sdb-tone-pink { --tone: #db2777; --tone-soft: #fff0f7; }
.sdb-tone-indigo { --tone: #4f46e5; --tone-soft: #efefff; }
.sdb-tone-green { --tone: #079455; --tone-soft: #eaf9f1; }
.sdb-tone-cyan { --tone: #0891b2; --tone-soft: #e9f9fc; }
.sdb-tone-amber { --tone: #d97706; --tone-soft: #fff5e6; }
.sdb-tone-violet { --tone: #6d28d9; --tone-soft: #f3edff; }
.sdb-tone-rose { --tone: #e11d48; --tone-soft: #fff0f3; }
.sdb-tone-emerald { --tone: #047857; --tone-soft: #e8f7f1; }
.sdb-tone-navy { --tone: #29447b; --tone-soft: #edf2fa; }
.sdb-tone-lime { --tone: #5f8f16; --tone-soft: #f1f8e8; }


/* =========================================================
   PANEL
========================================================= */

.sdb-panel {
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--sdb-border);
    border-radius: 12px;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(16,24,40,.03),
        0 7px 22px rgba(16,24,40,.055);
}


.sdb-panel-header {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
    border-bottom: 1px solid #edf0f4;
    background: #fff;
}


.sdb-panel-header h2 {
    margin: 0;
    color: #1f2937;
    font-size: 13px;
    font-weight: 850;
}


.sdb-panel-header p {
    margin: 3px 0 0;
    color: #8c96a6;
    font-size: 8px;
}


.sdb-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--sdb-orange);
    font-size: 8.5px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}


.sdb-panel-body {
    padding: 15px;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.sdb-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
}


.sdb-quick-action {
    min-height: 57px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #e6e9ee;
    border-radius: 9px;
    background: #fff;
    color: #3d485a;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(16,24,40,.025);
    transition: .16s ease;
}


.sdb-quick-action:hover {
    border-color: #ffc5a4;
    background: #fffaf7;
    transform: translateY(-1px);
}


.sdb-quick-action > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--sdb-orange);
    background: #fff0e8;
}


.sdb-quick-action strong {
    overflow: hidden;
    font-size: 8.5px;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.sdb-quick-action > i {
    color: #b6bdc8;
    font-size: 8px;
}


/* =========================================================
   ANALYTICS LAYOUT
========================================================= */

.sdb-analytics-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, .85fr);
    gap: 15px;
}


.sdb-chart-summary {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 7px;
    padding: 0 4px 7px;
}


.sdb-chart-summary > div:not(.sdb-chart-legend) span,
.sdb-chart-summary > div:not(.sdb-chart-legend) strong {
    display: block;
}


.sdb-chart-summary > div:not(.sdb-chart-legend) span {
    color: #98a2b3;
    font-size: 7.5px;
}


.sdb-chart-summary > div:not(.sdb-chart-legend) strong {
    margin-top: 2px;
    color: #253042;
    font-size: 13px;
    text-shadow: 0 1px 1px rgba(15,23,42,.07);
}


.sdb-chart-legend {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7d8797;
    font-size: 7.5px;
}


.sdb-chart-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


.sdb-chart-legend i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}


.sdb-chart-legend .sales {
    background: #ff620d;
}


.sdb-chart-legend .earnings {
    background: #2563eb;
}


.sdb-chart-scroll {
    width: 100%;
    overflow-x: auto;
}


.sdb-line-chart {
    display: block;
    width: 100%;
    min-width: 650px;
    height: auto;
}


.sdb-chart-grid-line {
    stroke: #edf0f4;
    stroke-width: 1;
}


.sdb-chart-axis {
    fill: #919aa9;
    font-size: 8.5px;
}


.sdb-sales-area {
    fill: rgba(255, 98, 13, .07);
}


.sdb-chart-line {
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.sdb-chart-line-sales {
    stroke: #ff620d;
}


.sdb-chart-line-earnings {
    stroke: #2563eb;
}


.sdb-chart-point {
    stroke: #fff;
    stroke-width: 2;
}


.sdb-chart-point-sales {
    fill: #ff620d;
}


.sdb-chart-point-earnings {
    fill: #2563eb;
}


/* =========================================================
   DONUT
========================================================= */

.sdb-donut-layout {
    min-height: 285px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}


.sdb-donut-wrap {
    display: grid;
    place-items: center;
}


.sdb-donut {
    width: 180px;
    max-width: 100%;
}


.sdb-donut-base {
    cx: 90;
    cy: 90;
    r: 62;
    fill: none;
    stroke: #edf0f4;
    stroke-width: 18;
}


.sdb-donut-total {
    fill: #1f2937;
    font-size: 25px;
    font-weight: 850;
    text-shadow: 0 1px 1px rgba(15,23,42,.08);
}


.sdb-donut-caption {
    fill: #98a2b3;
    font-size: 9px;
}


.sdb-donut-legend {
    display: grid;
    gap: 8px;
}


.sdb-donut-legend > div {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    color: #667085;
    font-size: 8.5px;
}


.sdb-donut-legend strong {
    color: #344054;
}


.sdb-donut-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}


/* =========================================================
   TOP PRODUCTS
========================================================= */

.sdb-top-products {
    display: grid;
    gap: 11px;
}


.sdb-top-product-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}


.sdb-rank {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    background: #fafbfc;
    color: #677184;
    font-size: 9px;
    font-weight: 850;
}


.sdb-top-product-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 5px;
}


.sdb-top-product-head > div:last-child {
    text-align: right;
}


.sdb-top-product-head strong,
.sdb-top-product-head span {
    display: block;
}


.sdb-top-product-head strong {
    max-width: 580px;
    overflow: hidden;
    color: #344054;
    font-size: 9px;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.sdb-top-product-head span {
    margin-top: 2px;
    color: #98a2b3;
    font-size: 7px;
}


.sdb-product-track {
    height: 7px;
    display: block;
    overflow: hidden;
    border-radius: 999px;
    background: #eef1f4;
}


.sdb-product-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #ff620d;
}


/* =========================================================
   CLEAN TABLE DESIGN
========================================================= */

.sdb-table-shell {
    width: 100%;
    overflow-x: auto;
    background: #fff;
}


.sdb-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
}


.sdb-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 10px 12px;
    border-bottom: 1px solid #dfe4ea;
    background: #f8f9fb;
    color: #667085;
    text-align: left;
    font-size: 7.5px;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
}


.sdb-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #edf0f3;
    background: #fff;
    color: #566175;
    vertical-align: middle;
    font-size: 8.8px;
}


.sdb-table tbody tr:nth-child(even) td {
    background: #fcfcfd;
}


.sdb-table tbody tr:hover td {
    background: #fff9f5;
}


.sdb-table tbody tr:last-child td {
    border-bottom: 0;
}


.sdb-table td > strong,
.sdb-order-cell strong,
.sdb-product-cell strong {
    color: #293548;
    font-weight: 800;
}


.sdb-table td > small,
.sdb-order-cell small,
.sdb-product-cell small {
    display: block;
    margin-top: 3px;
    color: #98a2b3;
    font-size: 7.2px;
}


.sdb-order-cell,
.sdb-product-cell {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}


.sdb-row-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #ff620d;
    background: #fff0e8;
}


.sdb-product-image {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e7eaf0;
    border-radius: 8px;
    background: #fff;
    color: #b5bdc9;
}


.sdb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.sdb-icon-button {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    background: #fff;
    color: #7d8797;
    text-decoration: none;
}


.sdb-icon-button:hover {
    border-color: #ffb98f;
    color: #ff620d;
    background: #fff8f4;
}


.sdb-danger-text {
    color: #d92d20 !important;
}


/* =========================================================
   BADGES
========================================================= */

.sdb-badge {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    padding: 3px 7px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 7.3px;
    font-weight: 800;
    white-space: nowrap;
}


.sdb-badge-success {
    border-color: #c8eedc;
    color: #087443;
    background: #eefbf5;
}


.sdb-badge-warning {
    border-color: #f8ddad;
    color: #9a5b00;
    background: #fff8e9;
}


.sdb-badge-danger {
    border-color: #fecdd3;
    color: #b42318;
    background: #fff4f5;
}


.sdb-badge-neutral {
    border-color: #e1e5ea;
    color: #667085;
    background: #f7f8fa;
}


/* =========================================================
   EMPTY
========================================================= */

.sdb-empty {
    min-height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    color: #98a2b3;
}


.sdb-empty i {
    color: #c6ccd5;
    font-size: 22px;
}


.sdb-empty strong {
    color: #667085;
    font-size: 9px;
}


.sdb-empty-success i {
    color: #0f9f6e;
}


.sdb-empty-mini {
    min-height: 230px;
    display: grid;
    place-items: center;
    color: #98a2b3;
    font-size: 9px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1250px) {
    .sdb-metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sdb-quick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 1050px) {
    .sdb-analytics-grid {
        grid-template-columns: 1fr;
    }

    .sdb-donut-layout {
        grid-template-columns: 210px minmax(0, 1fr);
    }
}


@media (max-width: 900px) {
    .sdb-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sdb-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .sdb-header-actions {
        width: 100%;
    }

    .sdb-header-actions .sdb-button {
        flex: 1;
    }
}


@media (max-width: 650px) {
    .sdb-dashboard-header {
        min-height: 0;
        padding: 18px 14px 18px 18px;
        border-radius: 10px;
    }

    .sdb-dashboard-header::before {
        top: 16px;
        bottom: 16px;
    }

    .sdb-dashboard-header h1 {
        font-size: 24px;
    }

    .sdb-dashboard-header p {
        font-size: 9px;
        line-height: 1.55;
    }

    .sdb-button {
        min-height: 37px;
        padding-inline: 9px;
        font-size: 8.5px;
    }

    .sdb-status-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .sdb-status-actions {
        width: 100%;
        justify-content: space-between;
    }

    .sdb-panel-header {
        align-items: flex-start;
    }

    .sdb-chart-summary {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .sdb-chart-legend {
        width: 100%;
        margin-left: 0;
    }

    .sdb-donut-layout {
        grid-template-columns: 1fr;
    }

    .sdb-donut-legend {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE — 2 KPI CARDS IN EACH ROW
========================================================= */

@media (max-width: 576px) {
    .sdb-section-heading h2 {
        font-size: 13px;
    }

    .sdb-section-heading p {
        font-size: 7px;
    }

    .sdb-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
    }

    .sdb-metric-card {
        min-height: 110px;
        padding: 11px 10px 10px;
        border-radius: 10px;
    }

    .sdb-metric-accent {
        left: 11px;
        right: 11px;
        height: 2px;
    }

    .sdb-metric-top {
        margin-bottom: 8px;
    }

    .sdb-metric-icon {
        width: 29px;
        height: 29px;
        border-radius: 7px;
        font-size: 10px;
    }

    .sdb-metric-open {
        font-size: 7px;
    }

    .sdb-metric-value {
        font-size: 14px;
    }

    .sdb-metric-label {
        margin-top: 4px;
        font-size: 7.4px;
        line-height: 1.2;
    }

    .sdb-metric-card small {
        padding-top: 5px;
        font-size: 6.2px;
    }

    .sdb-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        padding: 9px;
    }

    .sdb-quick-action {
        min-height: 51px;
        grid-template-columns: 29px minmax(0, 1fr);
        padding: 6px 7px;
    }

    .sdb-quick-action > span {
        width: 29px;
        height: 29px;
    }

    .sdb-quick-action strong {
        font-size: 7.5px;
    }

    .sdb-quick-action > i {
        display: none;
    }

    .sdb-panel {
        margin-bottom: 11px;
        border-radius: 10px;
    }

    .sdb-panel-header {
        min-height: 52px;
        padding: 10px 11px;
    }

    .sdb-panel-header h2 {
        font-size: 11px;
    }

    .sdb-panel-header p {
        font-size: 6.8px;
    }

    .sdb-panel-body {
        padding: 10px;
    }

    .sdb-line-chart {
        min-width: 555px;
    }

    .sdb-chart-summary > div:not(.sdb-chart-legend) strong {
        font-size: 11px;
    }

    /* -----------------------------------------------------
       TABLE -> HAND-CODED MOBILE ROW CARDS
    ----------------------------------------------------- */

    .sdb-table-shell {
        overflow: visible;
        padding: 8px;
    }

    .sdb-table {
        min-width: 0;
        display: block;
    }

    .sdb-table thead {
        display: none;
    }

    .sdb-table tbody {
        display: grid;
        gap: 8px;
    }

    .sdb-table tr {
        display: grid;
        grid-template-columns: 1fr;
        overflow: hidden;
        border: 1px solid #e5e8ed;
        border-radius: 9px;
        background: #fff;
        box-shadow: 0 3px 9px rgba(16,24,40,.035);
    }

    .sdb-table td,
    .sdb-table tbody tr:nth-child(even) td,
    .sdb-table tbody tr:hover td {
        min-height: 34px;
        display: grid;
        grid-template-columns: 80px minmax(0, 1fr);
        align-items: center;
        gap: 8px;
        padding: 7px 8px;
        border-bottom: 1px solid #eef1f4;
        background: #fff;
        font-size: 8px;
    }

    .sdb-table td:last-child {
        border-bottom: 0;
    }

    .sdb-table td::before {
        content: attr(data-label);
        color: #98a2b3;
        font-size: 6.7px;
        font-weight: 900;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

    .sdb-order-cell,
    .sdb-product-cell {
        min-width: 0;
    }

    .sdb-order-cell > div,
    .sdb-product-cell > div {
        min-width: 0;
    }

    .sdb-order-cell strong,
    .sdb-product-cell strong {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .sdb-row-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

    .sdb-product-image {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .sdb-icon-button {
        width: 29px;
        height: 29px;
    }
}
