@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

:root {
    --dk-bg: #f3f5fb;
    --dk-panel: #ffffff;
    --dk-sidebar: #1c232f;
    --dk-sidebar-deep: #19202b;
    --dk-sidebar-soft: #222a39;
    --dk-sidebar-active: #293445;
    --dk-sidebar-submark: #778290;
    --dk-sidebar-active-text: #8e85f2;
    --dk-text: #151b28;
    --dk-muted: #687284;
    --dk-line: #e1e6ef;
    --dk-primary: #7367f0;
    --dk-primary-soft: #f0eeff;
    --dk-success: #1cc76a;
    --dk-success-soft: #e8faef;
    --dk-warning: #ffa21d;
    --dk-warning-soft: #fff4de;
    --dk-danger: #ff5c5c;
    --dk-danger-soft: #ffe9e9;
    --dk-info: #00b8d9;
    --dk-info-soft: #e6fbff;
    --dk-shadow: 0 12px 30px rgba(35, 42, 58, 0.08);
    --dk-radius: 8px;
    --dk-sidebar-width: 280px;
    --dk-font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", "맑은 고딕", AppleGothic, Dotum, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--dk-bg);
    color: var(--dk-text);
    font-family: var(--dk-font);
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
    letter-spacing: 0;
}

.dk-shell {
    min-height: 100vh;
}

.dk-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    width: var(--dk-sidebar-width);
    overflow-y: auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 32%),
        var(--dk-sidebar);
    color: rgba(255, 255, 255, 0.76);
    box-shadow: 12px 0 28px rgba(25, 32, 43, 0.1);
}

.dk-brand {
    height: 84px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dk-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dk-brand-logo {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 4px 0;
    gap: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dk-brand-logo img {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 214px;
    max-height: 42px;
    object-fit: contain;
}

.dk-brand-logo span {
    flex: 0 0 auto;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.dk-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 850;
}

.dk-brand strong,
.dk-brand em {
    display: block;
    line-height: 1.1;
}

.dk-brand strong {
    color: #fff;
    font-size: 16px;
    font-weight: 850;
}

.dk-brand em {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
}

.dk-nav {
    padding: 18px 10px 30px;
}

.dk-nav-caption {
    display: block;
    margin: 4px 0 12px;
    padding: 0 8px;
    color: var(--dk-sidebar-active-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.dk-nav-caption-spaced {
    margin-top: 22px;
}

.dk-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 46px;
    margin-bottom: 6px;
    padding: 0 12px;
    border-radius: var(--dk-radius);
    color: #ced4dc;
    font-weight: 600;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.dk-nav-group > .dk-nav-link {
    padding-right: 34px;
}

.dk-nav-group > .dk-nav-link:after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%) rotate(-90deg);
    color: rgba(255, 255, 255, 0.46);
    font-family: "FontAwesome";
    font-size: 12px;
    line-height: 1;
    transition: color 0.18s ease, transform 0.18s ease;
}

.dk-nav-group.is-open > .dk-nav-link:after {
    transform: translateY(-50%) rotate(0deg);
    color: rgba(255, 255, 255, 0.88);
}

.dk-nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.dk-nav-link span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dk-nav-link small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
}

.dk-nav-link:hover,
.dk-nav-group:hover > .dk-nav-link {
    background: var(--dk-sidebar-soft);
    color: #ced4dc;
}

.dk-nav-link.active {
    background: var(--dk-sidebar-active);
    color: #fff;
    font-weight: 600;
}

.dk-nav-link.active:before {
    display: none;
}

.dk-nav-link.active i,
.dk-nav-group:hover > .dk-nav-link i {
    background: transparent;
    color: #fff;
}

.dk-subnav {
    max-height: 0;
    margin: 0 0 0;
    padding-left: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.22s ease, margin 0.18s ease, opacity 0.18s ease;
}

.dk-nav-group.is-open .dk-subnav {
    max-height: 360px;
    margin: 2px 0 14px;
    opacity: 1;
}

.dk-subnav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
    margin: 2px 10px;
    padding: 0 30px 0 52px;
    border-radius: var(--dk-radius);
    color: #ced4dc;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.dk-subnav a:hover {
    background: var(--dk-sidebar-soft);
    color: #ced4dc;
}

.dk-subnav a.active {
    background: transparent;
    color: var(--dk-sidebar-active-text);
    font-weight: 600;
}

.dk-subnav a.active:hover {
    background: var(--dk-sidebar-soft);
    color: var(--dk-sidebar-active-text);
}

.dk-subnav span {
    position: absolute;
    top: 50%;
    left: 28px;
    flex: none;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: transparent;
}

.dk-subnav span:before {
    content: "→";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--dk-sidebar-submark);
    font-family: var(--dk-font);
    font-size: 13px;
    line-height: 1;
    transition: color 0.18s ease, transform 0.18s ease;
}

.dk-subnav a:hover span:before,
.dk-subnav a.active span:before {
    transform: translate(5px, -50%);
}

.dk-main {
    min-height: 100vh;
    padding-left: var(--dk-sidebar-width);
}

.dk-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 72px;
    padding: 0 32px;
    border-bottom: 1px solid var(--dk-line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 0 rgba(20, 28, 42, 0.02);
}

.dk-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dk-line);
    border-radius: var(--dk-radius);
    background: #fff;
    color: var(--dk-text);
}

.dk-search {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.dk-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #9aa3b5;
    transform: translateY(-50%);
}

.dk-search input {
    width: 100%;
    height: 42px;
    padding: 0 14px 0 40px;
    border: 0;
    border-radius: var(--dk-radius);
    background: transparent;
    color: var(--dk-text);
    outline: 0;
}

.dk-search input:focus {
    box-shadow: none;
    background: #f7f8fb;
}

.dk-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.dk-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 92px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #d7deeb;
    border-radius: var(--dk-radius);
    background: #fff;
    color: var(--dk-text);
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(35, 42, 58, 0.04);
    transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.dk-auth-btn i {
    color: var(--dk-primary);
    font-size: 14px;
}

.dk-auth-btn:hover {
    border-color: rgba(115, 103, 240, 0.38);
    background: #fbfaff;
    color: var(--dk-primary);
    box-shadow: 0 12px 24px rgba(115, 103, 240, 0.12);
    transform: translateY(-1px);
}

.dk-auth-btn.is-logout i {
    color: var(--dk-muted);
}

.dk-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: var(--dk-radius);
    background: #fff;
    color: var(--dk-muted);
    font-size: 18px;
}

.dk-icon-btn:hover {
    color: var(--dk-primary);
    border-color: #cbd5e1;
}

.dk-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 186px;
    height: 46px;
    padding: 0 8px;
    border: 0;
    border-radius: var(--dk-radius);
    background: #fff;
}

.dk-profile > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #b9e4ff;
    color: #194262;
    font-weight: 850;
}

.dk-profile strong,
.dk-profile em {
    display: block;
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dk-profile strong {
    font-size: 13px;
    line-height: 1.15;
}

.dk-profile em {
    margin-top: 2px;
    color: var(--dk-muted);
    font-size: 11px;
    font-style: normal;
    line-height: 1.15;
}

.dk-content {
    max-width: 1520px;
    margin: 0 auto;
    padding: 18px 42px 42px;
}

.dk-page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 54px;
    margin-bottom: 22px;
}

.dk-page-title span,
.dk-section-head span {
    display: block;
    margin-bottom: 5px;
    color: var(--dk-muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.dk-page-title h1,
.dk-section-head h2 {
    margin: 0;
    color: var(--dk-text);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 850;
}

.dk-page-title ol {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: var(--dk-muted);
    font-size: 13px;
    list-style: none;
}

.dk-page-title li + li:before {
    content: "/";
    margin-right: 8px;
    color: #b4bdcc;
}

.dk-hero,
.dk-stat-card,
.dk-metric-card,
.dk-menu-card,
.dk-table-card {
    border: 0;
    border-radius: var(--dk-radius);
    background: var(--dk-panel);
    box-shadow: var(--dk-shadow);
}

.dk-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    padding: 24px;
}

.dk-kicker {
    margin: 0 0 8px;
    color: var(--dk-primary);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.dk-hero h2 {
    max-width: 860px;
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 850;
    word-break: keep-all;
}

.dk-hero p {
    max-width: 900px;
    margin: 0;
    color: var(--dk-muted);
    word-break: keep-all;
}

.dk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.dk-primary-btn,
.dk-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--dk-radius);
    font-weight: 800;
}

.dk-primary-btn {
    border: 1px solid var(--dk-primary);
    background: var(--dk-primary);
    color: #fff;
}

.dk-outline-btn {
    border: 1px solid var(--dk-line);
    background: #fff;
    color: var(--dk-text);
}

.dk-stat-grid,
.dk-card-grid,
.dk-menu-grid,
.dk-two-col {
    display: grid;
    gap: 16px;
}

.dk-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.dk-stat-card {
    display: flex;
    align-items: center;
    min-height: 106px;
    gap: 16px;
    padding: 24px 26px;
}

.dk-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: var(--dk-radius);
    color: #fff;
    font-size: 23px;
}

.dk-stat-icon.primary {
    background: var(--dk-primary);
}

.dk-stat-icon.warning {
    background: var(--dk-warning);
}

.dk-stat-icon.success {
    background: var(--dk-success);
}

.dk-stat-icon.info {
    background: var(--dk-info);
}

.dk-stat-card p,
.dk-stat-card h3,
.dk-stat-card em {
    margin: 0;
}

.dk-stat-card p {
    color: var(--dk-muted);
    font-weight: 750;
}

.dk-stat-card h3 {
    margin-top: 2px;
    color: var(--dk-text);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.dk-stat-card em {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: var(--dk-muted);
    font-size: 12px;
    font-style: normal;
}

.dk-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
    padding: 0 7px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 850;
}

.dk-trend.up {
    background: var(--dk-success-soft);
    color: var(--dk-success);
}

.dk-trend.down {
    background: var(--dk-danger-soft);
    color: var(--dk-danger);
}

.dk-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.dk-metric-card {
    overflow: hidden;
}

.dk-card-body {
    min-height: 214px;
    padding: 28px 26px 18px;
}

.dk-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--dk-muted);
    font-weight: 800;
}

.dk-card-title i {
    font-size: 23px;
}

.dk-card-title i.primary {
    color: var(--dk-primary);
}

.dk-card-title i.warning {
    color: var(--dk-warning);
}

.dk-card-title i.success {
    color: var(--dk-success);
}

.dk-metric-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.dk-metric-card p {
    margin: 0;
    color: var(--dk-muted);
}

.dk-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
}

.dk-badge.success {
    background: var(--dk-success-soft);
    color: var(--dk-success);
}

.dk-badge.warning {
    background: var(--dk-warning-soft);
    color: var(--dk-warning);
}

.dk-badge.neutral {
    background: #f2f4f8;
    color: var(--dk-muted);
}

.dk-chart {
    display: block;
    width: 100%;
    height: 82px;
    margin-top: -44px;
    opacity: 0.7;
}

.dk-metric-card footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
    color: #fff;
}

.dk-metric-card.accent-primary footer {
    background: var(--dk-primary);
}

.dk-metric-card.accent-warning footer {
    background: var(--dk-warning);
}

.dk-metric-card.accent-success footer {
    background: var(--dk-success);
}

.dk-metric-card footer span {
    display: flex;
    flex-direction: column;
    min-height: 66px;
    justify-content: center;
    gap: 2px;
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.34);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    text-align: center;
}

.dk-metric-card footer span:last-child {
    border-right: 0;
}

.dk-metric-card footer strong {
    color: #fff;
    font-size: 17px;
    font-weight: 850;
}

.dk-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.dk-section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--dk-muted);
    font-size: 13px;
    word-break: keep-all;
}

.dk-menu-map {
    margin-bottom: 18px;
}

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

.dk-menu-card {
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dk-menu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(35, 42, 58, 0.11);
}

.dk-menu-card header {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 18px;
    border-bottom: 1px solid var(--dk-line);
}

.dk-menu-card header > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: var(--dk-radius);
    background: var(--dk-primary-soft);
    color: var(--dk-primary);
    font-size: 20px;
}

.dk-menu-card:nth-child(3n + 2) header > span {
    background: var(--dk-warning-soft);
    color: var(--dk-warning);
}

.dk-menu-card:nth-child(3n) header > span {
    background: var(--dk-success-soft);
    color: var(--dk-success);
}

.dk-menu-card h3,
.dk-menu-card p {
    margin: 0;
}

.dk-menu-card h3 {
    font-size: 17px;
    font-weight: 850;
}

.dk-menu-card p {
    color: var(--dk-muted);
}

.dk-menu-list a {
    display: block;
    padding: 15px 18px;
    border-bottom: 1px solid #edf1f7;
    transition: background 0.18s ease, padding-left 0.18s ease;
}

.dk-menu-list a:last-child {
    border-bottom: 0;
}

.dk-menu-list a:hover {
    background: #fbfcff;
    padding-left: 22px;
}

.dk-menu-list strong,
.dk-menu-list span,
.dk-menu-list em {
    display: block;
}

.dk-menu-list strong {
    color: var(--dk-text);
    font-weight: 850;
}

.dk-menu-list span {
    margin-top: 3px;
    color: var(--dk-muted);
    word-break: keep-all;
}

.dk-menu-list em {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-top: 9px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--dk-primary-soft);
    color: var(--dk-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 750;
}

.dk-two-col {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
}

.dk-table-card {
    overflow: hidden;
}

.dk-table-card > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 0 18px;
    border-bottom: 1px solid var(--dk-line);
}

.dk-table-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 850;
}

.dk-table-card > header a {
    color: var(--dk-primary);
    font-size: 12px;
    font-weight: 850;
}

.dk-table-wrap {
    overflow-x: auto;
}

.dk-table-card table {
    width: 100%;
    border-collapse: collapse;
}

.dk-table-card th,
.dk-table-card td {
    padding: 13px 18px;
    border-bottom: 1px solid #edf1f7;
    white-space: nowrap;
    text-align: left;
}

.dk-table-card th {
    background: #fbfcfe;
    color: var(--dk-muted);
    font-size: 12px;
    font-weight: 850;
}

.dk-table-card tr:last-child td {
    border-bottom: 0;
}

.dk-table-card tbody tr {
    transition: background 0.16s ease;
}

.dk-table-card tbody tr:hover {
    background: #fbfcff;
}

.dk-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dk-person i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dk-primary-soft);
    color: var(--dk-primary);
    font-style: normal;
    font-weight: 850;
}

.dk-person strong,
.dk-person em {
    display: block;
}

.dk-person em {
    margin-top: 2px;
    color: var(--dk-muted);
    font-size: 12px;
    font-style: normal;
}

.dk-empty {
    padding: 24px;
    color: var(--dk-muted);
    text-align: center;
}

.dk-coming-soon {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 46px;
    border: 1px solid var(--dk-line);
    border-radius: var(--dk-radius);
    background:
        radial-gradient(circle at 82% 10%, rgba(115, 103, 240, 0.15), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #f1f5ff 100%);
    box-shadow: var(--dk-shadow);
}

.dk-coming-soon::before {
    content: "";
    position: absolute;
    inset: auto -70px -130px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(0, 184, 217, 0.12);
}

.dk-coming-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.dk-coming-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    border-radius: var(--dk-radius);
    background: var(--dk-primary-soft);
    color: var(--dk-primary);
    font-size: 28px;
}

.dk-coming-kicker {
    margin: 0 0 10px;
    color: var(--dk-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dk-coming-soon h2 {
    margin: 0;
    color: var(--dk-text);
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: 0;
}

.dk-coming-soon p {
    margin: 18px 0 0;
    color: var(--dk-muted);
    font-size: 16px;
    line-height: 1.8;
}

.dk-coming-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.dk-coming-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(115, 103, 240, 0.16);
    border-radius: var(--dk-radius);
    background: rgba(255, 255, 255, 0.82);
    color: #445066;
    font-weight: 800;
}

.dk-coming-list i {
    color: var(--dk-primary);
}

.dk-coming-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.dk-quick-list {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.dk-quick-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 12px;
    border: 1px solid var(--dk-line);
    border-radius: var(--dk-radius);
    background: #fff;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.dk-quick-list a:hover {
    border-color: #cbd5e1;
    background: #fbfcff;
    transform: translateX(2px);
}

.dk-quick-list i:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: var(--dk-radius);
    background: #f3f6fb;
    color: var(--dk-primary);
    font-size: 17px;
}

.dk-quick-list span {
    flex: 1;
    min-width: 0;
}

.dk-quick-list strong,
.dk-quick-list em {
    display: block;
}

.dk-quick-list strong {
    font-weight: 850;
}

.dk-quick-list em {
    margin-top: 3px;
    color: var(--dk-muted);
    font-size: 12px;
    font-style: normal;
}

.dk-quick-list b {
    color: #b4bdcc;
}

.dk-board-content {
    padding-top: 18px;
}

.dk-board-hero,
.dk-board-area {
    border: 0;
    border-radius: var(--dk-radius);
    background: var(--dk-panel);
    box-shadow: var(--dk-shadow);
}

.dk-board-hero {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    padding: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 98% 0%, rgba(115, 103, 240, 0.16), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(0, 184, 217, 0.1), transparent 30%),
        #fff;
}

.dk-board-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: var(--dk-radius);
    background: var(--dk-primary);
    color: #fff;
    font-size: 25px;
    box-shadow: 0 12px 24px rgba(115, 103, 240, 0.22);
}

.dk-board-hero h2,
.dk-board-hero p {
    margin: 0;
}

.dk-board-hero h2 {
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.dk-board-hero > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.dk-board-hero > div:nth-child(2) > p:last-child {
    color: var(--dk-muted);
    word-break: keep-all;
}

.dk-board-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.dk-board-area {
    padding: 18px;
}

.dk-board-area #bo_list,
.dk-board-area #bo_v,
.dk-board-area #bo_w {
    margin-top: 0;
}

.dk-board-area .tbl_head01,
.dk-board-area .tbl_head01 table {
    border-radius: var(--dk-radius);
}

.dk-board-area .btn_bo_user,
.dk-board-area .bo_fx {
    margin-bottom: 12px;
}

@media (max-width: 1320px) {
    .dk-stat-grid,
    .dk-card-grid,
    .dk-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dk-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .dk-sidebar {
        transform: translateX(-100%);
        transition: transform 0.22s ease;
    }

    .dk-sidebar.is-open {
        transform: translateX(0);
    }

    .dk-main {
        padding-left: 0;
    }

    .dk-menu-toggle {
        display: inline-flex;
    }

    .dk-header {
        padding: 0 16px;
    }

    .dk-search {
        display: none;
    }

    .dk-content {
        padding: 20px 16px 34px;
    }

    .dk-page-title,
    .dk-hero,
    .dk-section-head,
    .dk-board-hero {
        display: block;
    }

    .dk-page-title ol,
    .dk-hero-actions,
    .dk-section-head p,
    .dk-board-hero-actions {
        margin-top: 12px;
    }

    .dk-hero-actions,
    .dk-board-hero-actions {
        justify-content: flex-start;
    }

    .dk-stat-grid,
    .dk-card-grid,
    .dk-menu-grid {
        grid-template-columns: 1fr;
    }

    .dk-coming-soon {
        padding: 32px 24px;
    }

    .dk-coming-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 13px;
    }

    .dk-header {
        gap: 8px;
        height: 66px;
    }

    .dk-profile {
        min-width: 48px;
    }

    .dk-profile div {
        display: none;
    }

    .dk-icon-btn {
        display: none;
    }

    .dk-auth-btn {
        min-width: 42px;
        width: 42px;
        padding: 0;
    }

    .dk-auth-btn span {
        display: none;
    }

    .dk-content {
        padding: 16px 12px 28px;
    }

    .dk-hero,
    .dk-stat-card,
    .dk-card-body,
    .dk-menu-card header,
    .dk-board-hero,
    .dk-board-area,
    .dk-coming-soon {
        padding: 16px;
    }

    .dk-hero h2 {
        font-size: 22px;
    }

    .dk-coming-soon h2 {
        font-size: 24px;
    }

    .dk-metric-card footer {
        grid-template-columns: 1fr;
    }

    .dk-metric-card footer span {
        border-right: 0;
        border-bottom: 1px solid var(--dk-line);
    }

    .dk-metric-card footer span:last-child {
        border-bottom: 0;
    }

    .dk-stat-card em {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

/* 2026-07 dashboard upgrade */
.dkx-content {
    padding-top: 18px;
}

.dkx-hero,
.dkx-kpi-card,
.dkx-panel,
.dkx-flow-grid article {
    border-radius: var(--dk-radius);
    box-shadow: 0 16px 38px rgba(28, 35, 47, 0.08);
}

.dkx-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    overflow: hidden;
    min-height: 330px;
    margin-bottom: 18px;
    padding: 34px;
    border: 1px solid rgba(17, 31, 55, 0.08);
    background:
        linear-gradient(90deg, rgba(9, 24, 48, 0.94) 0%, rgba(14, 40, 78, 0.88) 48%, rgba(16, 86, 148, 0.74) 100%),
        linear-gradient(135deg, #07162c 0%, #153a71 52%, #f7fbff 100%);
    color: #fff;
}

.dkx-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

.dkx-hero > * {
    position: relative;
    z-index: 1;
}

.dkx-hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
}

.dkx-kicker {
    margin: 0 0 14px;
    color: #36e2bd;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.dkx-hero h1 {
    margin: 0;
    font-size: clamp(32px, 3.35vw, 54px);
    line-height: 1.14;
    font-weight: 900;
    word-break: keep-all;
}

.dkx-hero-main > p:last-of-type {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
    word-break: keep-all;
}

.dkx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.dkx-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--dk-radius);
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    font-weight: 850;
    backdrop-filter: blur(10px);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.dkx-hero-actions a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.18);
}

.dkx-command-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--dk-radius);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.dkx-donut {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 188px;
    height: 188px;
    margin: 0 auto;
    border-radius: 50%;
    animation: dkxScaleIn 0.8s ease both;
}

.dkx-donut:after {
    content: "";
    position: absolute;
    inset: 17px;
    border-radius: 50%;
    background: #0c1d36;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.dkx-donut span {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.dkx-donut strong {
    font-size: 40px;
    line-height: 1;
    font-weight: 950;
}

.dkx-donut em {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.dkx-donut-legend {
    display: grid;
    gap: 10px;
}

.dkx-donut-legend span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 750;
}

.dkx-donut-legend i {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dkx-donut-legend b {
    margin-left: auto;
    color: #fff;
    font-size: 14px;
}

.dkx-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.dkx-kpi-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 124px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--dk-line);
    background: #fff;
    animation: dkxFadeUp 0.54s ease both;
}

.dkx-kpi-card:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: var(--kpi-color);
}

.dkx-kpi-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: var(--dk-radius);
    background: #f4f2ff;
    background: color-mix(in srgb, var(--kpi-color) 13%, #fff);
    color: var(--kpi-color);
    font-size: 21px;
}

.dkx-kpi-card p,
.dkx-kpi-card h3,
.dkx-kpi-card em {
    margin: 0;
}

.dkx-kpi-card p {
    color: #64748b;
    font-weight: 800;
}

.dkx-kpi-card h3 {
    margin-top: 2px;
    color: #121826;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 950;
}

.dkx-kpi-card em {
    display: block;
    margin-top: 6px;
    color: #7a8495;
    font-size: 12px;
    font-style: normal;
    font-weight: 650;
}

.dkx-kpi-card.is-purple {
    --kpi-color: #7367f0;
}

.dkx-kpi-card.is-blue {
    --kpi-color: #00a6d6;
}

.dkx-kpi-card.is-green {
    --kpi-color: #18a058;
}

.dkx-kpi-card.is-orange {
    --kpi-color: #f59e0b;
}

.dkx-dashboard-grid,
.dkx-data-grid,
.dkx-bottom-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.dkx-dashboard-grid {
    grid-template-columns: 1fr;
}

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

.dkx-bottom-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.dkx-panel {
    overflow: hidden;
    border: 1px solid var(--dk-line);
    background: #fff;
}

.dkx-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 78px;
    padding: 20px 22px;
    border-bottom: 1px solid #e8edf5;
}

.dkx-panel-head span,
.dkx-section-title span {
    display: block;
    margin-bottom: 4px;
    color: #7367f0;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.dkx-panel-head h2,
.dkx-section-title h2 {
    margin: 0;
    color: #121826;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.dkx-panel-head a {
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.dkx-bars {
    display: grid;
    gap: 13px;
    padding: 22px;
}

.dkx-bar-row {
    display: grid;
    grid-template-columns: 46px minmax(160px, 1fr) minmax(160px, 0.85fr) 54px;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 12px;
    border: 1px solid #edf1f7;
    border-radius: var(--dk-radius);
    background: #fbfcff;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.dkx-bar-row:hover {
    transform: translateY(-2px);
    border-color: #d6deea;
    background: #fff;
}

.dkx-bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: var(--dk-radius);
    background: #f4f2ff;
    background: color-mix(in srgb, var(--bar-color) 13%, #fff);
    color: var(--bar-color);
    font-size: 19px;
}

.dkx-bar-copy strong,
.dkx-bar-copy em {
    display: block;
}

.dkx-bar-copy strong {
    color: #151b28;
    font-weight: 900;
}

.dkx-bar-copy em {
    margin-top: 3px;
    color: #7a8495;
    font-size: 12px;
    font-style: normal;
}

.dkx-bar-track {
    position: relative;
    display: block;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf2f7;
}

.dkx-bar-track i {
    display: block;
    width: var(--bar-value);
    height: 100%;
    border-radius: inherit;
    background: var(--bar-color);
    animation: dkxBarFill 1s cubic-bezier(.2, .7, .25, 1) both;
}

.dkx-bar-row b {
    color: #121826;
    font-size: 18px;
    font-weight: 950;
    text-align: right;
}

.dkx-volume-chart {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    min-height: 500px;
    gap: 18px;
    padding: 34px 22px 26px;
}

.dkx-volume-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    height: 450px;
}

.dkx-volume-item i {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: var(--h);
    min-height: 18px;
    overflow: visible;
    border-radius: 8px 8px 0 0;
    background: var(--c);
    background: linear-gradient(180deg, color-mix(in srgb, var(--c) 86%, #fff), var(--c));
    animation: dkxGrowY 0.9s cubic-bezier(.2, .7, .25, 1) both;
}

.dkx-volume-item span {
    position: absolute;
    top: -25px;
    color: #151b28;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.dkx-volume-item em {
    display: block;
    min-height: 38px;
    padding-top: 10px;
    color: #64748b;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-align: center;
    word-break: keep-all;
}

.dkx-pipeline {
    margin-bottom: 18px;
    padding: 24px;
    border: 1px solid var(--dk-line);
    border-radius: var(--dk-radius);
    background: #fff;
    box-shadow: 0 16px 38px rgba(28, 35, 47, 0.08);
}

.dkx-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.dkx-section-title p {
    max-width: 560px;
    margin: 0;
    color: #64748b;
    word-break: keep-all;
}

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

.dkx-flow-grid article {
    position: relative;
    min-height: 164px;
    padding: 20px;
    border: 1px solid #e8edf5;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.dkx-flow-grid article:after {
    content: "";
    position: absolute;
    top: 36px;
    right: -15px;
    width: 15px;
    height: 2px;
    background: #cdd8e8;
}

.dkx-flow-grid article:last-child:after {
    display: none;
}

.dkx-flow-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: var(--dk-radius);
    background: #f0eeff;
    color: #7367f0;
    font-size: 18px;
}

.dkx-flow-grid strong,
.dkx-flow-grid span {
    display: block;
}

.dkx-flow-grid strong {
    color: #151b28;
    font-size: 16px;
    font-weight: 900;
}

.dkx-flow-grid span {
    margin-top: 8px;
    color: #64748b;
    line-height: 1.65;
    word-break: keep-all;
}

.dkx-list,
.dkx-program-feed,
.dkx-quick-grid {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.dkx-list a,
.dkx-program-feed a,
.dkx-quick-grid a {
    border: 1px solid #edf1f7;
    border-radius: var(--dk-radius);
    background: #fff;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.dkx-list a:hover,
.dkx-program-feed a:hover,
.dkx-quick-grid a:hover {
    transform: translateY(-2px);
    border-color: #d6deea;
    background: #fbfcff;
}

.dkx-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 12px;
}

.dkx-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0eeff;
    color: #7367f0;
    font-style: normal;
    font-weight: 900;
}

.dkx-list span {
    flex: 1;
    min-width: 0;
}

.dkx-list strong,
.dkx-list em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dkx-list strong {
    color: #151b28;
    font-weight: 850;
}

.dkx-list em {
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
    font-style: normal;
}

.dkx-list b {
    color: #aeb8c7;
}

.dkx-program-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dkx-program-feed a {
    position: relative;
    min-height: 104px;
    padding: 16px 16px 16px 20px;
    overflow: hidden;
}

.dkx-program-feed a:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--feed-color);
}

.dkx-program-feed span,
.dkx-program-feed strong,
.dkx-program-feed em {
    display: block;
}

.dkx-program-feed span {
    color: var(--feed-color);
    font-size: 11px;
    font-weight: 900;
}

.dkx-program-feed strong {
    margin-top: 7px;
    color: #151b28;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 900;
    word-break: keep-all;
}

.dkx-program-feed em {
    margin-top: 8px;
    color: #64748b;
    font-size: 12px;
    font-style: normal;
}

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

.dkx-quick-grid a {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 86px;
    padding: 14px;
}

.dkx-quick-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: var(--dk-radius);
    background: #f0eeff;
    color: #7367f0;
    font-size: 18px;
}

.dkx-quick-grid span {
    min-width: 0;
}

.dkx-quick-grid strong,
.dkx-quick-grid em {
    display: block;
}

.dkx-quick-grid strong {
    color: #151b28;
    font-weight: 900;
}

.dkx-quick-grid em {
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-style: normal;
}

.dkx-empty {
    margin: 0;
    padding: 24px;
    color: #64748b;
    text-align: center;
}

@keyframes dkxFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dkxScaleIn {
    from {
        opacity: 0;
        transform: scale(0.86);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes dkxBarFill {
    from {
        width: 0;
    }
}

@keyframes dkxGrowY {
    from {
        height: 0;
    }
}

@media (max-width: 1500px) {
    .dkx-kpi-grid,
    .dkx-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dkx-flow-grid article:after {
        display: none;
    }
}

@media (max-width: 1180px) {
    .dkx-hero,
    .dkx-dashboard-grid,
    .dkx-data-grid,
    .dkx-bottom-grid {
        grid-template-columns: 1fr;
    }

    .dkx-command-card {
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .dkx-hero {
        min-height: 0;
        padding: 24px 18px;
    }

    .dkx-hero h1 {
        font-size: 30px;
    }

    .dkx-hero-actions,
    .dkx-section-title,
    .dkx-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .dkx-kpi-grid,
    .dkx-flow-grid,
    .dkx-program-feed,
    .dkx-quick-grid {
        grid-template-columns: 1fr;
    }

    .dkx-bar-row {
        grid-template-columns: 42px minmax(0, 1fr) 44px;
    }

    .dkx-bar-track {
        grid-column: 2 / 4;
    }

    .dkx-volume-chart {
        gap: 8px;
        padding-right: 14px;
        padding-left: 14px;
    }

}

@media (max-width: 480px) {
    .dkx-donut {
        width: 156px;
        height: 156px;
    }

    .dkx-volume-chart {
        overflow-x: auto;
        grid-template-columns: repeat(3, 82px);
    }

    .dkx-volume-item {
        height: 340px;
    }
}
