:root {
    --bg: #eef2f4;
    --side: #14343c;
    --side-2: #1c4a54;
    --accent: #1a8f84;
    --accent-2: #14756c;
    --text: #1c2a32;
    --muted: #667887;
    --line: #dce4e8;
    --card: #ffffff;
    --warn: #b45309;
    --err: #b42318;
    --ok: #067647;
    --head-h: 58px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-width: 1200px; }
body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.layout { display: flex; min-height: 100vh; min-width: 1200px; }
.side {
    width: 152px;
    background: var(--side);
    color: #e8f2f4;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    overflow-y: auto;
}
.brand {
    height: var(--head-h);
    padding: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    border-bottom: 1px solid #24545e;
}
.brand strong {
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    padding: 6px 8px;
    border: 1px solid #2d6b74;
    border-radius: 3px;
    background: var(--side-2);
    box-shadow: inset 0 0 0 1px rgba(26, 143, 132, 0.18);
}
.side nav { padding: 8px 0; flex: 1; }
.side nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #d5e6ea;
    text-decoration: none;
    padding: 12px 6px 10px;
    border-radius: 0;
    margin-bottom: 0;
    gap: 6px;
    font-size: 14px;
}
.side nav a:hover { background: var(--side-2); }
.side nav a.on { background: var(--accent); color: #fff; }
.side nav .ico { width: 32px; height: 32px; stroke-width: 1.6; }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.appbar {
    position: sticky;
    top: 0;
    z-index: 40;
    height: var(--head-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 28px;
    background: var(--card);
    border-bottom: 1px solid var(--line);
}
.appbar-title { font-size: 15px; font-weight: 600; }
.appbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}
.appbar-right a {
    color: var(--accent);
    text-decoration: none;
    margin-left: 4px;
    padding-left: 12px;
    border-left: 1px solid var(--line);
}
.appbar-right a:hover { color: var(--accent-2); }
.main-body { padding: 20px 28px 40px; }
.h1 { font-size: 22px; margin: 0 0 6px; }
.sub { color: var(--muted); margin: 0 0 18px; }
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 36, 0.45);
    align-items: center;
    justify-content: center;
    z-index: 80;
    padding: 16px;
}
.modal.is-open { display: flex; }
.modal-box {
    background: var(--card);
    border: 1px solid var(--line);
    width: 400px;
    max-width: 100%;
    padding: 20px 20px 16px;
}
.modal-box h2 { margin: 0 0 14px; font-size: 16px; }
.modal-box input[type="text"],
.modal-box input[type="password"],
.modal-box input[type="number"],
.modal-box select,
.modal-box textarea {
    max-width: none;
    width: 100%;
}
.modal-actions { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.muted { color: var(--muted); font-size: 12px; }
.form-line {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.form-line .field { flex: 1; min-width: 200px; }
.form-line .field label { margin-bottom: 6px; }
.form-line input[type="text"] {
    max-width: none;
    margin-bottom: 0;
    width: 100%;
}
.form-line .field-btn { padding-bottom: 1px; display: flex; gap: 8px; }

.topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.topbar .sub { margin: 0; flex: 1; min-width: 0; }
.actions { display: flex; gap: 8px; flex-wrap: nowrap; align-items: center; }
.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    padding: 10px 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
}
.toolbar .q {
    flex: 1 1 220px;
    min-width: 160px;
    max-width: none;
    height: 32px;
    margin: 0;
}
.toolbar .date-wrap {
    width: auto;
    margin: 0;
}
.toolbar .date-wrap input {
    width: 148px;
    height: 32px;
    margin: 0;
}
.toolbar select {
    width: auto;
    min-width: 120px;
    max-width: 170px;
    height: 32px;
    margin: 0;
}
.toolbar .sep { color: var(--muted); flex-shrink: 0; }
.actions .date-wrap {
    width: auto;
    margin-bottom: 0;
}
.actions .date-wrap input {
    width: 148px;
    height: 32px;
    margin-bottom: 0;
}
.actions .sep { color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.stats-3 { grid-template-columns: repeat(3, 1fr); }
.stat {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 16px 18px;
}
.stat b { display: block; font-size: 22px; margin-bottom: 4px; }
.stat span { color: var(--muted); font-size: 13px; }
.stat.ok b { color: var(--ok); }
.stat.warn b { color: var(--warn); }

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 16px 18px;
    margin-bottom: 16px;
}
.card h2 { font-size: 15px; margin: 0 0 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 12px; }
.num { text-align: right; font-variant-numeric: tabular-nums; }

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: 3px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
}
.btn:hover { background: var(--accent-2); }
.btn.gray { background: #5b6b75; }
.btn.gray:hover { background: #4a5962; }
.btn.link { background: transparent; color: var(--accent); padding: 0; }
.btn.sm {
    padding: 0 12px;
    height: 32px;
    font-size: 13px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.btn.icon {
    width: 32px;
    height: 32px;
    padding: 0;
}
.btn.danger { background: #b42318; }
.btn.danger:hover { background: #912018; }
.ico {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}
.ops {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.ops .inline-del {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.ops .inline-del input[type="hidden"] { display: none; }
.col-ops {
    text-align: right;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.pager {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 14px;
}
.pager a, .pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 3px;
    font-size: 13px;
}
.pager a {
    background: #e8edf0;
    color: #4a5560;
    text-decoration: none;
}
.pager a:hover { background: #d8dee3; color: #2f3a42; }
.pager .on { background: var(--accent); color: #fff; }
.pager .off { background: #eef1f4; color: #9aa6ae; }
.pager .muted { min-width: 0; padding-left: 0; margin-right: 4px; }

.tag {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    background: #e8f6f3;
    color: var(--accent-2);
}
.tag.warn { background: #fff4e5; color: var(--warn); }
.tag.gray { background: #eef1f4; color: #556; }

.form { max-width: 720px; }
.form-full input[type="text"],
.form-full input[type="password"],
.form-full input[type="number"],
.form-full input[type="date"],
.form-full input[type="month"],
.form-full select,
.form-full textarea {
    max-width: none;
    width: 100%;
}
.form-full .date-wrap {
    max-width: none;
    width: 100%;
    margin-bottom: 12px;
}
.date-wrap {
    position: relative;
    max-width: none;
    width: 100%;
    margin-bottom: 12px;
}
.date-wrap input {
    max-width: none;
    width: 100%;
    margin-bottom: 0;
    cursor: pointer;
    background: #fff;
}
.dp {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 60;
    width: 280px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 12px;
    margin-top: 4px;
}
.dp.is-open { display: block; }
.dp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.dp-year { font-weight: 600; }
.dp-nav, .dp-back, .dp-close {
    border: 1px solid var(--line);
    background: #fff;
    padding: 4px 8px;
    cursor: pointer;
    font: inherit;
    color: var(--text);
}
.dp-foot {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.dp-back, .dp-close { flex: 1; }
.dp-months {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.dp-week, .dp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}
.dp-week { color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.dp-cell {
    border: 1px solid var(--line);
    background: #fff;
    padding: 8px 0;
    cursor: pointer;
    font: inherit;
    color: var(--text);
}
.dp-cell.is-empty { border: 0; background: transparent; cursor: default; }
.dp-cell.is-on, .dp-months .dp-cell:hover, .dp-grid .dp-cell:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.is-hide { display: none; }
.income-block {
    border-top: 1px solid var(--line);
    padding-top: 12px;
    margin-bottom: 8px;
}
label { display: block; margin: 0 0 6px; color: var(--muted); }
input[type="text"], input[type="password"], input[type="number"], input[type="date"], input[type="month"], select, textarea {
    width: 100%;
    max-width: 480px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 3px;
    font: inherit;
    background: #fff;
    margin-bottom: 12px;
}
textarea { min-height: 70px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 480px; }
.check-list { max-width: none; }
.check-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.check-item span { flex: 1; min-width: 0; }
.check-item input[type="number"] { width: 160px; max-width: 160px; margin: 0; }
.order-pick { position: relative; margin-bottom: 16px; }
.order-pick-q { margin-bottom: 8px; }
.order-pick-list {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid var(--line);
    max-height: 240px;
    overflow: auto;
}
.order-pick-list button {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 10px 12px;
    cursor: pointer;
    font: inherit;
    color: var(--text);
}
.order-pick-list button:hover { background: #f3f7f7; }
.order-pick-empty { margin: 8px 0 0; }

.flash { padding: 10px 12px; border-radius: 3px; margin-bottom: 14px; }
.flash-ok { background: #e8f7ef; color: var(--ok); }
.flash-err { background: #fdecec; color: var(--err); }
.tip { background: #eef7f6; color: #14605a; padding: 10px 12px; border-radius: 3px; margin-bottom: 14px; }
.warnbox { background: #fff7ed; color: #9a4d0a; padding: 10px 12px; border-radius: 3px; margin-bottom: 14px; }

.files { list-style: none; margin: 0; padding: 0; }
.files li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.files li span:first-child { min-width: 0; word-break: break-all; }
.modal-box.preview-box {
    width: min(900px, 96vw);
    max-height: 92vh;
    overflow: auto;
}
.preview-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.preview-bar h2 { margin: 0; }
#preview-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#preview-body iframe {
    display: block;
    width: 100%;
    height: 70vh;
    border: 0;
    background: #f4f6f7;
}
.inline-del { display: inline; }
.file-pick {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--text);
    cursor: pointer;
}
.file-pick input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}
.file-pick .btn {
    background: #e8edf0;
    color: #4a5560;
}
.file-pick .btn:hover {
    background: #d8dee3;
    color: #2f3a42;
}
.file-pick-name { color: var(--muted); font-size: 13px; }
.login-page {
    height: 100vh;
    overflow: hidden;
    min-width: 1200px;
    background: #f3efe6 url("../img/login-bg.jpg") left top / cover no-repeat;
}
.login-wrap {
    height: 100vh;
    display: flex;
    align-items: stretch;
}
.login-aside {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px 0 6vw;
    color: #14343c;
    background: linear-gradient(90deg, rgba(243, 239, 230, 0.78) 0%, rgba(243, 239, 230, 0.32) 55%, rgba(243, 239, 230, 0) 100%);
}
.login-intro {
    width: 228px;
}
.login-aside-kicker {
    margin: 0 0 14px 2px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    color: #14343c;
    animation: login-up 0.7s ease both;
}
.login-aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.login-aside li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    color: #14343c;
    background: rgba(255, 252, 246, 0.58);
    border: 1px solid rgba(26, 143, 132, 0.2);
    border-radius: 3px;
    backdrop-filter: blur(6px);
    animation: login-up 0.7s ease both;
}
.login-aside li:nth-child(1) { animation-delay: 0.2s; }
.login-aside li:nth-child(2) { animation-delay: 0.32s; }
.login-aside li:nth-child(3) { animation-delay: 0.44s; }
.login-aside li::before { display: none; }
.login-dot {
    position: relative;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #1a8f84;
    box-shadow: 0 0 0 0 rgba(26, 143, 132, 0.45);
    animation: login-dot-beat 1.8s ease-out infinite;
}
.login-aside li:nth-child(2) .login-dot { animation-delay: 0.35s; }
.login-aside li:nth-child(3) .login-dot { animation-delay: 0.7s; }
.login-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    border: 1px solid rgba(26, 143, 132, 0.7);
    animation: login-dot-ring 1.8s ease-out infinite;
}
.login-aside li:nth-child(2) .login-dot::after { animation-delay: 0.35s; }
.login-aside li:nth-child(3) .login-dot::after { animation-delay: 0.7s; }
.login-panel {
    width: 420px;
    flex-shrink: 0;
    height: 100vh;
    padding: 0;
    animation: login-in-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.login-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(251, 248, 241, 0.42);
    border: 0;
    border-left: 1px solid rgba(26, 143, 132, 0.35);
    border-radius: 0;
    padding: 56px 48px;
    box-shadow: none;
    backdrop-filter: blur(10px);
}
.login-card::before { display: none; }
@keyframes login-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}
@keyframes login-in-right {
    from { transform: translateX(100%); }
    to { transform: none; }
}
@keyframes login-dot-beat {
    0%, 70%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(26, 143, 132, 0.4); }
    12% { transform: scale(0.86); }
    24% { transform: scale(1.12); box-shadow: 0 0 0 6px rgba(26, 143, 132, 0); }
}
@keyframes login-dot-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.6); opacity: 0; }
}
.login-mark {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1a8f84;
}
.login-card h1 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    color: #14343c;
}
.login-card .sub { margin-bottom: 28px; color: #4a5a60; }
.login-form label {
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 0;
    color: #3d5258;
}
.login-form input[type="text"],
.login-form input[type="password"] {
    height: 44px;
    margin-bottom: 20px;
    padding: 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(26, 143, 132, 0.45);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 15px;
    color: #1c2a30;
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-bottom-color: #1a8f84;
    box-shadow: none;
}
.login-btn {
    width: 100%;
    height: 44px;
    margin-top: 14px;
    background: #1a8f84;
    color: #fff;
    border: 0;
    box-shadow: none;
    letter-spacing: 0.16em;
    font-size: 15px;
}
.login-btn:hover {
    background: #14756c;
    color: #fff;
    box-shadow: none;
}
.install-wrap { max-width: 560px; margin: 48px auto; }
.steps { display: flex; gap: 8px; margin-bottom: 18px; color: var(--muted); }
.steps .on { color: var(--accent); font-weight: 700; }
.conf-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}
.conf-head label { margin-bottom: 0; }
.conf-box {
    width: 100%;
    box-sizing: border-box;
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 12px;
    line-height: 1.5;
    resize: vertical;
    margin-bottom: 12px;
}

.bars { display: flex; flex-direction: column; gap: 10px; }
.bar-row { display: grid; grid-template-columns: 90px 1fr 80px; gap: 8px; align-items: center; }
.bar-track { height: 10px; background: #e6eeef; border-radius: 3px; overflow: hidden; }
.bar-fill { display: block; height: 10px; background: var(--accent); }
.pct-0 { width: 0; } .pct-5 { width: 5%; } .pct-10 { width: 10%; } .pct-15 { width: 15%; }
.pct-20 { width: 20%; } .pct-25 { width: 25%; } .pct-30 { width: 30%; } .pct-35 { width: 35%; }
.pct-40 { width: 40%; } .pct-45 { width: 45%; } .pct-50 { width: 50%; } .pct-55 { width: 55%; }
.pct-60 { width: 60%; } .pct-65 { width: 65%; } .pct-70 { width: 70%; } .pct-75 { width: 75%; }
.pct-80 { width: 80%; } .pct-85 { width: 85%; } .pct-90 { width: 90%; } .pct-95 { width: 95%; }
.pct-100 { width: 100%; }

.cols {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 8px;
    height: 200px;
    padding: 8px 8px 0;
}
.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 72px;
    height: 100%;
}
.col-val { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.col-track {
    flex: 1;
    width: 28px;
    background: #edf2f3;
    display: flex;
    align-items: flex-end;
}
.col-fill { display: block; width: 100%; background: var(--accent); }
.col-fill.exp { background: #c47a2c; }
.col-lab { margin-top: 8px; font-size: 12px; color: var(--text); }
.hud {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 16px 18px;
    margin-bottom: 16px;
}
.hud h2 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
}
.hud-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}
.hud-head h2 { margin: 0; }
.hud-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--muted);
}
.hud-key {
    display: inline-block;
    width: 12px;
    height: 2px;
    margin-right: 6px;
    vertical-align: middle;
}
.hud-meta { color: var(--muted); }
.hud-empty { margin: 0; color: var(--muted); font-size: 13px; }
.hud-chart { background: #fff; }
.hud-chart svg { display: block; width: 100%; height: 300px; }
.hud-grid { stroke: #e6ecee; stroke-width: 1; }
.hud-axis { font-size: 11px; fill: #667887; }
.hud-line { fill: none; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.hud-line.inc { stroke: #1a8f84; }
.hud-line.exp { stroke: #c47a2c; }
.hud-dot-inc { fill: #fff; stroke: #1a8f84; stroke-width: 1.6; }
.hud-dot-exp { fill: #fff; stroke: #c47a2c; stroke-width: 1.6; }
.hud-donut { display: flex; align-items: center; gap: 18px; }
.hud-donut svg { width: 168px; height: 168px; flex-shrink: 0; }
.hud-ring-bg { fill: none; stroke: #e6ecee; stroke-width: 14; }
.hud-center-lab { fill: #667887; font-size: 11px; }
.hud-center-val { fill: #1c2a32; font-size: 13px; }
.hud-list { flex: 1; margin: 0; padding: 0; list-style: none; }
.hud-list li {
    display: grid;
    grid-template-columns: 10px 1fr auto 42px;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}
.hud-list li:last-child { border-bottom: 0; }
.hud-swatch {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 1px;
}
.hud-key.inc { background: #1a8f84; }
.hud-key.exp { background: #c47a2c; }
.hud-inc-0 { background: #2ee6c8; }
.hud-inc-1 { background: #4ec4f0; }
.hud-inc-2 { background: #8b9cff; }
.hud-exp-0 { background: #f0a14a; }
.hud-exp-1 { background: #ff7a6b; }
.hud-exp-2 { background: #e8d44d; }
.hud-exp-3 { background: #5fd0e8; }
.hud-exp-4 { background: #c084fc; }
.hud-exp-5 { background: #94a3b8; }
.hud-list b { font-weight: 400; color: var(--text); font-variant-numeric: tabular-nums; }
.hud-list em { font-style: normal; color: var(--muted); text-align: right; }
.chart-h-0 { height: 0; } .chart-h-5 { height: 5%; } .chart-h-10 { height: 10%; } .chart-h-15 { height: 15%; }
.chart-h-20 { height: 20%; } .chart-h-25 { height: 25%; } .chart-h-30 { height: 30%; } .chart-h-35 { height: 35%; }
.chart-h-40 { height: 40%; } .chart-h-45 { height: 45%; } .chart-h-50 { height: 50%; } .chart-h-55 { height: 55%; }
.chart-h-60 { height: 60%; } .chart-h-65 { height: 65%; } .chart-h-70 { height: 70%; } .chart-h-75 { height: 75%; }
.chart-h-80 { height: 80%; } .chart-h-85 { height: 85%; } .chart-h-90 { height: 90%; } .chart-h-95 { height: 95%; }
.chart-h-100 { height: 100%; }
