* {
    box-sizing: border-box;
}

@media (max-width: 760px) {
    .history-page .history-back-button {
        width: auto;
    }
}

.history-page {
    display: grid;
    gap: 14px;
}

.history-page .panel {
    margin-bottom: 0;
}

.history-summary .panel-title h2 {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-page-nav {
    display: flex;
    align-items: center;
    min-height: 30px;
}

.history-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 30px;
    padding: 0;
    color: #475467;
    background: transparent;
    border: 0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    transition: color .15s ease;
}

.history-back-button:hover {
    color: #175cd3;
    background: transparent;
}

.history-back-icon {
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.history-summary-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
}

.history-current-stats {
    display: grid;
    flex: 1 1 auto;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.history-current-stats > div {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 2px 16px;
    border-left: 1px solid #eaecf0;
}

.history-current-stats > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.history-current-stats span {
    color: #667085;
    font-size: 12px;
}

.history-current-stats strong {
    overflow: hidden;
    color: #101828;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-current-stats .is-active {
    color: #039855;
}

.history-current-stats .is-inactive {
    color: #d92d20;
}

.history-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.history-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    color: #344054;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-weight: 700;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.history-actions a:hover {
    color: #175cd3;
    background: #f9fafb;
    border-color: #98a2b3;
}

.history-actions a.primary {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
}

.history-actions a.primary:hover {
    color: #fff;
    background: #175cd3;
    border-color: #175cd3;
}

.history-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.history-chart-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .035);
}

.history-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f2f5;
}

.history-chart-header h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #101828;
    font-size: 16px;
}

.history-chart-header h3::before {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    content: "";
}

.history-chart-header h3.stock {
    color: #059669;
}

.history-chart-header h3.price {
    color: #2563eb;
}

.history-chart-header h3.batch {
    color: #2563eb;
}

.history-chart-header h3.cycle {
    color: #7c3aed;
}

.history-chart-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
    color: #667085;
    font-size: 12px;
}

.history-chart-stats span {
    white-space: nowrap;
}

.history-chart-stats strong {
    margin-left: 3px;
    color: #344054;
    font-size: 13px;
}

.history-chart-stats .latest {
    padding-left: 13px;
    color: #344054;
    border-left: 1px solid #e4e7ec;
    font-weight: 700;
}

.history-chart-stats .latest strong {
    color: #101828;
    font-size: 14px;
}

.history-chart {
    width: 100%;
    height: 330px;
}

.history-chart-empty {
    display: grid;
    min-height: 240px;
    margin: 0;
    place-items: center;
    color: #98a2b3;
}

.history-chart-empty[hidden] {
    display: none;
}

.history-details {
    overflow: hidden;
}

.history-details summary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-height: 48px;
    padding: 0 16px;
    cursor: pointer;
    color: #344054;
    font-size: 15px;
    font-weight: 800;
    list-style: none;
}

.history-details summary::-webkit-details-marker {
    display: none;
}

.history-details summary::after {
    margin-left: auto;
    color: #667085;
    font-size: 16px;
    content: "⌄";
}

.history-details[open] summary {
    border-bottom: 1px solid #edf0f3;
}

.history-details[open] summary::after {
    content: "⌃";
}

.history-details-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.history-details summary small {
    color: #667085;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .history-summary-body {
        align-items: stretch;
        flex-direction: column;
    }

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

    .history-actions a {
        flex: 1 1 0;
    }
}

@media (max-width: 600px) {
    .history-page {
        gap: 12px;
    }

    .history-summary .panel-title {
        align-items: flex-start;
    }

    .history-current-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 14px;
    }

    .history-current-stats > div:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .history-chart-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .history-chart-stats {
        justify-content: flex-start;
    }

    .history-chart {
        height: 290px;
    }
}

body {
    margin: 0;
    color: #202124;
    background: #f5f7fa;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    font-size: 14px;
}

a {
    color: #1f6feb;
    text-decoration: none;
}

a:hover {
    color: #0b5bd3;
    text-decoration: none;
}

.container {
    width: min(1530px, calc(100% - 32px));
    margin: 24px auto;
}

.page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 24px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.sidebar-stack {
    display: grid;
    gap: 12px;
}

.reward-sidebar {
    padding: 10px;
    background: #fff;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
}

.reward-sidebar img {
    display: block;
    width: 100%;
    height: auto;
}

.sidebar-shop-link {
    position: relative;
    display: grid;
    gap: 3px;
    padding: 11px 12px;
    overflow: hidden;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb 0%, #0f766e 100%);
    border: 1px solid rgba(37, 99, 235, .3);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.sidebar-shop-link::after {
    position: absolute;
    top: 9px;
    right: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1;
    content: "›";
}

.sidebar-shop-link span {
    font-size: 14px;
    font-weight: 800;
}

.sidebar-shop-link small {
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    font-weight: 500;
}

.sidebar-shop-link:hover {
    color: #fff;
    text-decoration: none;
    border-color: rgba(37, 99, 235, .55);
    box-shadow: 0 10px 22px rgba(37, 99, 235, .24);
    transform: translateY(-1px);
}

.news-sidebar-entry {
    position: relative;
    display: grid;
    gap: 5px;
    padding: 13px 34px 13px 14px;
    color: #172033;
    line-height: 1.25;
    text-align: left;
    text-decoration: none;
    background: #fff;
    border: 1px solid #dfe4ea;
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
    transition: background-color .15s ease, border-color .15s ease;
}

.news-sidebar-entry::after {
    position: absolute;
    top: 50%;
    right: 13px;
    color: #98a2b3;
    font-size: 17px;
    line-height: 1;
    content: "›";
    transform: translateY(-50%);
}

.news-sidebar-entry span {
    font-size: 14px;
    font-weight: 800;
}

.news-sidebar-entry small {
    color: #667085;
    font-size: 11px;
    font-weight: 500;
}

.news-sidebar-entry:hover,
.news-sidebar-entry:focus-visible {
    color: #172033;
    text-decoration: none;
    background: #fffbf3;
    border-color: #f1c47a;
}

.news-sidebar-entry:hover::after,
.news-sidebar-entry:focus-visible::after {
    color: #b45309;
}

.news-sidebar-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8edf3;
}

.news-sidebar-header h2 {
    margin: 3px 0 0;
    font-size: 15px;
    line-height: 1.3;
}

.news-sidebar-header > time {
    color: #7b8798;
    font-size: 10px;
    line-height: 1.4;
}

.news-kicker {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #5f6f85;
    font-size: 10px;
    font-weight: 700;
}

.news-kicker i {
    width: 6px;
    height: 6px;
    background: #13a36f;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(19, 163, 111, .12);
}

.news-sidebar-list {
    display: grid;
    gap: 4px;
    padding-top: 10px;
}

.news-sidebar-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 8px;
    color: #344054;
    background: #f8fafc;
    border: 1px solid #edf0f4;
    border-radius: 5px;
    cursor: help;
    outline: none;
}

.news-sidebar-item strong {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-sidebar-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
}

.news-sidebar-title-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
}

.news-sidebar-title-meta time {
    flex: 0 0 auto;
    color: #8792a2;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.3;
}

.news-headline-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex: 0 0 auto;
    padding: 2px 5px;
    color: #52627a;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    background: #f0f3f7;
    border-radius: 4px;
}

.news-headline-breaking {
    color: #b42318;
    background: #fff0ee;
}

.news-headline-major {
    color: #9f1239;
    background: #fff1f3;
}

.news-headline-featured {
    color: #175cd3;
    background: #edf5ff;
}

.news-headline-rumor,
.news-headline-verification {
    color: #a15c00;
    background: #fff5df;
}

.news-headline-opinion {
    color: #6c57b6;
    background: #f3efff;
}

.news-headline-review {
    color: #6c57b6;
    background: #f3efff;
}

.news-headline-official {
    color: #087443;
    background: #e9f8ef;
}

.news-sidebar-item:hover,
.news-sidebar-item:focus,
.news-sidebar-item:focus-within {
    color: #175cd3;
    background: #f5f9ff;
    border-color: #bcd3f7;
}

.news-sidebar-arrow {
    color: #98a2b3;
    font-size: 16px;
    line-height: 1;
}

.news-sidebar-tooltip {
    position: absolute;
    z-index: 32;
    top: calc(100% + 6px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 32px));
    padding: 11px 12px;
    color: #344054;
    background: #fff;
    border: 1px solid #d7e0eb;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(31, 48, 77, .16);
}

.news-sidebar-item:hover .news-sidebar-tooltip,
.news-sidebar-item:focus .news-sidebar-tooltip,
.news-sidebar-item:focus-within .news-sidebar-tooltip {
    display: grid;
    gap: 9px;
}

.news-sidebar-tooltip small {
    color: #66758a;
    font-size: 11px;
    font-style: normal;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.news-sidebar-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.news-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
}

.news-sidebar-meta time {
    color: #8792a2;
    font-size: 9px;
}

.news-type {
    padding: 2px 5px;
    color: #2468c8;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    background: #edf5ff;
    border-radius: 4px;
}

.news-type-rumor {
    color: #aa6611;
    background: #fff5df;
}

.news-type-opinion {
    color: #6c57b6;
    background: #f3efff;
}

.news-source-tag,
.news-verification-tag {
    padding: 2px 5px;
    color: #52627a;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    background: #f0f3f7;
    border-radius: 4px;
}

.news-source-thsottiaux {
    color: #087443;
    background: #e9f8ef;
}

.news-source-ggg78g89,
.news-verification-ggg78g89 {
    color: #a15c00;
    background: #fff5df;
}

.news-verification-thsottiaux {
    color: #2468c8;
    background: #edf5ff;
}

.news-benefit-section {
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid #e5eaf0;
}

.news-benefit-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #344054;
    font-size: 10px;
    font-weight: 700;
}

.news-benefit-heading b {
    color: #087443;
    font-weight: 700;
}

.news-benefit-heading-title {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.news-benefit-heading-icon {
    width: 11px;
    height: 11px;
    color: #087443;
}

.news-benefit-list {
    display: grid;
    gap: 4px;
    padding-top: 6px;
}

.news-benefit-item {
    background: #fff;
    border-color: #e5eaf0;
}

.news-benefit-item:hover,
.news-benefit-item:focus,
.news-benefit-item:focus-within {
    color: inherit;
    background: #fafbfd;
    border-color: #cfd8e3;
}

.news-benefit-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
}

.news-benefit-title strong {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-benefit-title-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
}

.news-benefit-title-meta time {
    flex: 0 0 auto;
    color: #8792a2;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.3;
}

.news-benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex: 0 0 auto;
    padding: 2px 5px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 4px;
}

.news-tag-icon {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-benefit-item.news-benefit-reset .news-benefit-tag {
    color: #087443;
    background: #e9f8ef;
}

.news-benefit-item.news-benefit-free .news-benefit-tag {
    color: #067085;
    background: #ecfdff;
}

.news-benefit-item.news-benefit-campaign .news-benefit-tag {
    color: #a15c00;
    background: #fff5df;
}

.news-benefit-item.news-benefit-preview .news-benefit-tag {
    color: #175cd3;
    background: #edf5ff;
}

.news-benefit-item.news-benefit-rights .news-benefit-tag {
    color: #6c57b6;
    background: #f3efff;
}

.news-benefit-empty {
    margin: 7px 0 0;
    color: #758195;
    font-size: 10px;
    line-height: 1.55;
}

.news-trend-list {
    display: grid;
    gap: 4px;
    padding-top: 12px;
}

.news-trend-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #66758a;
    font-size: 10px;
}

.news-trend-heading b {
    color: #52627a;
    font-weight: 700;
}

.news-trend-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 8px;
    color: #344054;
    background: #f8fafc;
    border: 1px solid #edf0f4;
    border-radius: 5px;
    cursor: help;
    outline: none;
}

.news-trend-title {
    min-width: 0;
}

.news-trend-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.news-trend-inline-metrics {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    white-space: nowrap;
}

.news-trend-inline-metrics i {
    padding: 1px 4px;
    color: #52627a;
    font-size: 9px;
    font-style: normal;
    line-height: 1.4;
    background: #eef2f7;
    border-radius: 3px;
}

.news-trend-status {
    width: fit-content;
    padding: 1px 4px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
    border-radius: 3px;
}

.news-trend-status.is-reliable {
    color: #175cd3;
    background: #edf5ff;
}

.news-trend-status.is-observing {
    color: #a15c00;
    background: #fff5df;
}

.news-trend-title > strong {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-trend-item:hover,
.news-trend-item:focus,
.news-trend-item:focus-within {
    color: #175cd3;
    background: #f5f9ff;
    border-color: #bcd3f7;
}

.news-trend-arrow {
    color: #98a2b3;
    font-size: 16px;
    line-height: 1;
}

.news-trend-tooltip {
    position: absolute;
    z-index: 30;
    top: auto;
    right: 0;
    bottom: calc(100% + 6px);
    display: none;
    width: min(300px, calc(100vw - 32px));
    max-height: min(420px, calc(100vh - 24px));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 11px 12px;
    color: #344054;
    background: #fff;
    border: 1px solid #d7e0eb;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(31, 48, 77, .16);
}

.news-trend-item:hover .news-trend-tooltip,
.news-trend-item:focus .news-trend-tooltip,
.news-trend-item:focus-within .news-trend-tooltip {
    display: grid;
    gap: 8px;
}

.news-trend-tooltip p,
.news-trend-tooltip small {
    margin: 0;
    color: #52627a;
    font-size: 11px;
    line-height: 1.6;
}

.news-trend-tooltip small b {
    display: block;
    margin-bottom: 2px;
    color: #a15c00;
}

.news-trend-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.news-confidence-meter {
    display: block;
    height: 5px;
    overflow: hidden;
    background: #e9edf3;
    border-radius: 3px;
}

.news-confidence-meter i {
    display: block;
    height: 100%;
    background: #2e90fa;
    border-radius: inherit;
}

.news-trend-metrics i {
    padding: 3px 6px;
    color: #52627a;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    background: #f0f3f7;
    border-radius: 4px;
}

.news-sidebar-empty {
    margin: 12px 0 0;
    color: #758195;
    font-size: 10px;
    line-height: 1.6;
}

.toolbar,
.panel,
.notice {
    background: #fff;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
}

.toolbar {
    display: grid;
    padding: 0;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .08);
}

.filter-section {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 28px;
    border-bottom: 1px solid #edf0f3;
}

.filter-label {
    padding-top: 8px;
    color: #202124;
    font-size: 16px;
    font-weight: 700;
}

.filter-field {
    min-width: 0;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    padding: 16px 28px;
}

.filter-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px 12px;
    color: #667085;
    font-size: 12px;
    line-height: 1.5;
    border-top: 1px solid #edf0f3;
}

.filter-note p {
    margin: 0;
}

.time-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.time-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.legend-color.fresh {
    background: #079455;
}

.legend-color.warning {
    background: #ca8a04;
}

.legend-color.stale {
    background: #d92d20;
}

input,
select,
button,
.button {
    height: 38px;
    border-radius: 6px;
    border: 1px solid #cfd6df;
    padding: 0 12px;
    font: inherit;
}

input[type="search"],
input[type="text"] {
    min-width: 260px;
}

.source-config-grid input[type="text"] {
    min-width: 0;
    width: 100%;
}

.tag-search {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 42px;
    min-width: 0;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid #cfd6df;
    border-radius: 8px;
}

.tag-search input[type="search"] {
    flex: 1;
    min-width: 180px;
    height: 32px;
    padding: 0;
    color: #202124;
    font-size: 15px;
    border: 0;
    outline: 0;
}

.exclude-search {
    width: 100%;
}

.tag-list {
    display: contents;
}

.filter-shop {
    width: 220px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-status {
    width: 190px;
}

.filter-price {
    width: 200px;
    min-width: 160px;
}

.filter-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    color: #202124;
    font-size: 14px;
    white-space: nowrap;
}

.filter-check input {
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin: 0;
    padding: 0;
    accent-color: #1f6feb;
}

.keyword-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 0 7px 0 10px;
    color: #005ce6;
    background: #f5f9ff;
    border: 1px solid #c8ddff;
    border-radius: 7px;
    font-size: 15px;
    white-space: nowrap;
}

.exclude-tag {
    color: #cf1515;
    background: #fff8f7;
    border-color: #ffcaca;
}

.keyword-tag button {
    width: 18px;
    height: 18px;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
    font-size: 16px;
    line-height: 18px;
}

.history-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.history-tags[hidden] {
    display: none;
}

.history-tag {
    display: inline-flex;
    align-items: center;
    height: 26px;
    overflow: hidden;
    color: #005ce6;
    background: #f7fbff;
    border: 1px solid #c8ddff;
    border-radius: 7px;
    font-size: 13px;
}

.pinned-history-tag {
    background: #eef6ff;
    border-color: #9fc5ff;
}

.exclude-history-tag {
    color: #cf1515;
    background: #fff8f7;
    border-color: #ffcaca;
}

.exclude-history-tag.pinned-history-tag {
    background: #fff1ef;
    border-color: #ffaaa6;
}

.history-tag .history-tag-text,
.history-tag .history-pin {
    height: 100%;
    min-width: 0;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: inherit;
    line-height: 1;
}

.history-tag .history-tag-text {
    max-width: 150px;
    padding: 0 4px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-tag .history-pin {
    width: 24px;
    color: #8a9bb2;
    font-size: 14px;
}

.history-tag .history-pin:hover,
.history-tag.pinned-history-tag .history-pin {
    color: #f59e0b;
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1f6feb;
    border-color: #1f6feb;
    cursor: pointer;
}

.button.secondary {
    color: #344054;
    background: #fff;
    border-color: #cfd6df;
}

button.secondary {
    color: #344054;
    background: #fff;
    border-color: #cfd6df;
}

.compact-button {
    height: 30px;
    padding: 0 10px;
}

.manual-news-task-button {
    height: 30px;
}

button.danger {
    height: 32px;
    min-width: 56px;
    background: #d92d20;
    border-color: #d92d20;
    white-space: nowrap;
}

button.success {
    height: 32px;
    min-width: 56px;
    color: #fff;
    background: #079455;
    border-color: #079455;
    white-space: nowrap;
}

button:disabled {
    cursor: not-allowed;
    opacity: .62;
}

.toast-host {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1000;
    display: grid;
    gap: 10px;
    width: min(320px, calc(100vw - 36px));
}

.toast {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
    color: #1d2939;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-left-width: 4px;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .16);
    transition: opacity .2s ease, transform .2s ease;
}

.toast.persistent {
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: start;
}

.toast-content {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.toast-title {
    font-weight: 700;
    line-height: 1.45;
}

.toast-detail {
    color: #475467;
    font-size: 13px;
    line-height: 1.45;
}

.toast-close {
    width: 24px;
    height: 24px;
    min-width: 24px;
    padding: 0;
    color: #667085;
    background: transparent;
    border: 0;
    font-size: 20px;
    line-height: 1;
}

.toast-close:hover {
    color: #344054;
    background: #f2f4f7;
}

.toast.ok {
    border-left-color: #12b76a;
}

.toast.error {
    border-left-color: #f04438;
}

.toast.is-leaving {
    opacity: 0;
    transform: translateY(-6px);
}

.panel {
    margin-bottom: 18px;
    overflow: hidden;
}

.panel h2 {
    margin: 0;
    font-size: 18px;
}

.panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #edf0f3;
}

.panel-title span,
small,
.meta {
    color: #667085;
}

.shop-list-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #edf0f3;
}

.shop-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}

.shop-list-toolbar label {
    display: grid;
    gap: 6px;
    color: #344054;
    font-weight: 700;
}

.shop-list-toolbar select {
    min-width: 120px;
}

.shop-search-field input {
    width: 220px;
}

.shop-status-summary {
    display: flex;
    flex: 1 1 560px;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}

.shop-status-summary > i {
    width: 1px;
    height: 20px;
    background: #e4e7ec;
}

.shop-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475467;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

.shop-stat strong {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1;
}

.shop-stat b {
    color: #344054;
    font-size: 22px;
    font-weight: 700;
}

.shop-stat-active strong {
    color: #079455;
    background: #dcfae6;
}

.shop-stat-active b {
    color: #079455;
}

.shop-stat-inactive strong {
    color: #475467;
    background: #f2f4f7;
}

.shop-stat-abnormal strong {
    color: #d92d20;
    background: #fee4e2;
}

.shop-stat-abnormal b {
    color: #d92d20;
}

.shop-stat-alert {
    padding: 8px 14px;
    color: #d92d20;
    background: #fef3f2;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
}

.shop-stat-alert[hidden] {
    display: none;
}

.shop-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.shop-pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 34px;
    color: #344054;
    text-decoration: none;
    border: 1px solid #cfd8e3;
    border-radius: 6px;
    background: #fff;
}

.shop-pager a:hover {
    color: #0b63f6;
    border-color: #9ec5ff;
    background: #f5f9ff;
}

.shop-pager a.disabled {
    pointer-events: none;
    color: #98a2b3;
    background: #f8fafc;
}

.shop-pager span {
    color: #475467;
}

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

.form-panel {
    padding: 16px;
}

.domain-panel,
.add-shop-panel {
    padding: 24px;
}

.admin-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #eef4ff;
}

.admin-card-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.admin-card-header h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.admin-card-header p {
    margin: 6px 0 0;
    padding: 0;
    color: #667085;
}

.admin-card-divider {
    height: 1px;
    margin: 24px 0;
    background: #edf0f3;
}

.domain-address-list {
    display: grid;
    gap: 16px;
}

.domain-address-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 96px;
    padding: 18px 20px;
    border: 1px solid #d7e3f3;
    border-left-width: 4px;
    border-radius: 8px;
    background: #f8fbff;
}

.domain-address-online {
    border-left-color: #2e72e8;
}

.domain-address-local {
    border-left-color: #35b779;
    background: #f7fffb;
}

.domain-address-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .08);
}

.domain-address-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.domain-address-card strong {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    color: #0b63f6;
    background: #e8f1ff;
    border-radius: 6px;
    line-height: 1;
}

.domain-address-local strong {
    color: #079455;
    background: #dcfae6;
}

.domain-address-card p {
    margin: 12px 0 0;
    padding: 0;
    color: #344054;
    font-size: 18px;
}

.domain-address-card b {
    margin-right: 8px;
}

.domain-address-card a {
    color: #344054;
    text-decoration: none;
}

.domain-address-card a:hover {
    color: #0b63f6;
}

.platform-radio-group {
    display: grid;
    gap: 10px;
    margin: 16px 0;
    padding: 0;
    border: 0;
}

.platform-radio-group legend {
    padding: 0;
    color: #344054;
    font-weight: 700;
}

.platform-radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-radio-options label {
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.platform-radio-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.platform-radio-options span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    color: #344054;
    background: #fff;
    border: 1px solid #cfd8e3;
    border-radius: 6px;
    font-weight: 600;
}

.platform-radio-options input:checked + span {
    color: #0b63f6;
    background: #eff6ff;
    border-color: #9ec5ff;
    box-shadow: 0 0 0 2px rgba(46, 114, 232, .08);
}

.platform-radio-options label:hover span {
    border-color: #9ec5ff;
}

.refresh-panel {
    grid-column: 1 / -1;
    padding: 0;
}

.form-panel label {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    color: #344054;
}

.form-panel p,
.meta,
.actions {
    padding: 0 16px;
}

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

.product-pagination {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 58px;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #edf0f3;
}

.pagination-summary {
    display: grid;
    gap: 2px;
    justify-self: start;
    color: #667085;
    font-size: 12px;
    line-height: 1.35;
}

.pagination-summary strong {
    color: #344054;
    font-size: 13px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.pagination-page,
.pagination-arrow,
.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: #475467;
    font-size: 12px;
    line-height: 1;
}

.pagination-page,
.pagination-arrow {
    text-decoration: none;
    background: #fff;
    border: 1px solid #d7dee8;
    border-radius: 5px;
    transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.pagination-arrow {
    font-size: 19px;
}

.pagination-page:hover,
.pagination-arrow:hover {
    color: #175cd3;
    text-decoration: none;
    background: #f5f9ff;
    border-color: #9dbcf0;
}

.pagination-page.active {
    color: #fff;
    font-weight: 700;
    background: #2563eb;
    border-color: #2563eb;
}

.pagination-arrow.disabled {
    color: #c5ccd6;
    background: #f8fafc;
    border-color: #e7ebf0;
    cursor: not-allowed;
}

.pagination-size {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
    color: #667085;
    font-size: 12px;
}

.pagination-size select {
    width: 86px;
    height: 32px;
    padding: 0 26px 0 10px;
    color: #344054;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #d7dee8;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.product-table {
    table-layout: fixed;
}

th,
td {
    padding: 12px 14px;
    border-bottom: 1px solid #edf0f3;
    text-align: left;
    vertical-align: middle;
}

th {
    color: #475467;
    background: #f8fafc;
    font-weight: 600;
    white-space: nowrap;
}

.product-table th {
    text-align: center;
}

.product-table th:nth-child(1),
.product-table td:nth-child(1) {
    width: 64px;
}

.product-table th:nth-child(2),
.product-table td:nth-child(2) {
    width: 46%;
}

.product-table th:nth-child(3),
.product-table td:nth-child(3) {
    width: 14%;
}

.product-table th:nth-child(4),
.product-table td:nth-child(4) {
    width: 82px;
}

.product-table th:nth-child(5),
.product-table td:nth-child(5) {
    width: 70px;
}

.product-table th:nth-child(6),
.product-table td:nth-child(6) {
    width: 118px;
}

.product-table th:nth-child(7),
.product-table td:nth-child(7) {
    width: 72px;
}

.fresh-update-time,
.warning-update-time,
.stale-update-time {
    font-weight: 700;
}

.fresh-update-time {
    color: #079455;
}

.warning-update-time {
    color: #ca8a04;
}

.stale-update-time {
    color: #d92d20;
}

.sort-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #475467;
    font-weight: 600;
}

.sort-link span {
    display: inline-block;
    min-width: 12px;
}

.sort-link.active {
    color: #1f6feb;
}

.num {
    text-align: right;
    white-space: nowrap;
}

.seq-col {
    width: 56px;
    color: #667085;
}

tr.refreshing-row {
    background: #fff7e6;
}

tr.refreshing-row td:first-child {
    color: #b54708;
    font-weight: 700;
}

.product-name {
    min-width: 0;
}

.product-name-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.product-name-inner > div {
    min-width: 0;
}

.duplicate-toggle {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 24px;
    margin-top: 0;
    padding: 0 8px;
    color: #6941c6;
    background: #f7f4ff;
    border: 1px solid #d9d6fe;
    border-radius: 999px;
    font-size: 12px;
}

.duplicate-row {
    background: #f8fafc;
}

.duplicate-row .product-name-inner {
    padding-left: 28px;
}

.duplicate-row .product-name-inner::before {
    content: none;
}

.product-name-inner img,
.product-image-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 6px;
}

.product-name-inner img {
    object-fit: cover;
    border: 1px solid #edf0f3;
}

.product-image-placeholder {
    display: block;
    flex: 0 0 44px;
    background: transparent;
}

.product-title,
td small {
    display: block;
}

.product-title {
    max-width: 100%;
    color: #101828;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-title:hover {
    color: #1f6feb;
}

.product-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.shop-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    color: #1f6feb;
    background: #f5f9ff;
    border: 1px solid #c8ddff;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.8;
}

.shop-tag:hover,
.actions a:hover,
.sort-link:hover {
    color: #0b5bd3;
    background: #eef5ff;
    border-color: #9ec5ff;
    text-decoration: none;
}

.status {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
}

.status.ok {
    color: #067647;
    background: #ecfdf3;
}

.status.off {
    color: #b42318;
    background: #fef3f2;
}

.source-tag {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 8px;
    color: #344054;
    background: #eef4ff;
    border: 1px solid #c7d7fe;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
}

.domain-panel p {
    margin: 14px 0 0;
    padding: 0;
    color: #344054;
}

.domain-panel strong {
    margin-right: 8px;
}

.source-import {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.source-import-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 2px 0 6px;
}

.source-hero-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(31, 48, 77, .06);
}

.source-hero-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.source-import-hero h2 {
    margin: 0;
    color: #101828;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.source-import-hero p {
    margin: 6px 0 0;
    color: #475467;
    font-size: 14px;
}

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

.source-entry-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 18px;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 16px 20px;
    color: #101828;
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(31, 48, 77, .06);
    text-align: left;
    text-decoration: none;
}

.source-entry-card:hover {
    color: #101828;
    border-color: #bcd0ee;
    box-shadow: 0 14px 30px rgba(31, 48, 77, .09);
    transform: translateY(-1px);
}

button.source-entry-card {
    width: 100%;
    height: auto;
    font: inherit;
}

.source-entry-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #1f6feb;
    background: #f2f6ff;
    border-radius: 999px;
}

.source-entry-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.source-entry-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.source-entry-copy strong {
    font-size: 17px;
    line-height: 1.15;
    font-weight: 800;
}

.source-entry-copy small {
    color: #667085;
    font-size: 13px;
}

.source-entry-arrow {
    color: #475467;
    font-size: 22px;
    line-height: 1;
}

.source-config-panel {
    display: grid;
    gap: 16px;
    padding: 18px 22px 22px;
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(31, 48, 77, .04);
}

.source-import > form:not(.source-config-panel) {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 10px;
    overflow: hidden;
}

.source-config-panel h3 {
    margin: 0;
    color: #101828;
    font-size: 18px;
    line-height: 1.2;
}

.source-config-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.source-config-grid label {
    display: grid;
    gap: 8px;
    color: #344054;
    font-size: 14px;
}

.source-field-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.source-help {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: #667085;
    border: 1px solid #98a2b3;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
}

.source-search-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.source-search-actions button {
    width: 240px;
    height: 42px;
    gap: 8px;
    font-size: 15px;
    border-radius: 8px;
}

.source-search-actions button span {
    font-size: 20px;
    line-height: 1;
}

.source-search-actions .source-import-button-label {
    font-size: inherit;
}

.source-import-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 28px;
    color: #667085;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.source-import-status-dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    background: #98a2b3;
    border-radius: 50%;
}

.source-import-status.is-pending,
.source-import-status.is-running,
.source-import-status.is-waiting_write {
    color: #175cd3;
}

.source-import-status.is-pending .source-import-status-dot,
.source-import-status.is-running .source-import-status-dot,
.source-import-status.is-waiting_write .source-import-status-dot {
    background: #2e6fe8;
}

.source-import-status.is-success {
    color: #067647;
}

.source-import-status.is-success .source-import-status-dot {
    background: #12b76a;
}

.source-import-status.is-error {
    color: #b42318;
}

.source-import-status.is-error .source-import-status-dot {
    background: #f04438;
}

.source-import-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 16px;
}

.source-result-meta,
.source-pager {
    padding: 12px 16px;
    color: #344054;
    background: #f8fafc;
    border-bottom: 1px solid #edf0f3;
}

.source-pager {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #edf0f3;
    border-bottom: 0;
}

.source-pager span {
    color: #667085;
}

.refresh-header {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    padding: 24px 36px;
    border-bottom: 1px solid #e4eaf3;
}

.refresh-header h2 {
    font-size: 24px;
    line-height: 32px;
}

.refresh-title-icon {
    width: 34px;
    height: 34px;
}

.refresh-dashboard {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 46px;
    padding: 32px 36px 0;
}

.refresh-card {
    min-height: 140px;
    padding: 24px;
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(31, 48, 77, 0.08);
}

.refresh-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #202124;
    font-size: 20px;
}

.refresh-card-icon {
    min-width: 58px;
    height: 28px;
    padding: 0 7px;
    gap: 4px;
}

.refresh-status-card {
    align-self: stretch;
}

.refresh-status-list {
    overflow: hidden;
    border: 1px solid #e4eaf3;
    border-radius: 10px;
}

.refresh-status-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 42px;
    gap: 12px;
    padding: 8px 16px;
    border-bottom: 1px solid #e4eaf3;
}

.refresh-status-row:last-child {
    border-bottom: 0;
}

.refresh-status-row span,
.refresh-metric-title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #202124;
    font-weight: 700;
}

.refresh-status-row img,
.refresh-metric-title img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.refresh-status-row strong,
.refresh-progress-metric strong,
.refresh-rhythm-item strong,
.refresh-platform-name {
    color: #1f6feb;
}

.refresh-progress-card {
    position: relative;
}

.refresh-progress-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 6px;
}

.refresh-progress-metric {
    min-width: 0;
    padding: 0 26px;
    border-right: 1px solid #dbe3ef;
}

.refresh-progress-metric:first-child {
    padding-left: 0;
}

.refresh-progress-metric:last-child {
    padding-right: 0;
    border-right: 0;
}

.refresh-progress-metric strong {
    display: block;
    margin-top: 10px;
    font-size: 28px;
    line-height: 34px;
}

.refresh-progress-track {
    height: 10px;
    margin-top: 10px;
    overflow: hidden;
    background: #e7edf7;
    border-radius: 999px;
}

.refresh-progress-track span {
    display: block;
    height: 100%;
    min-width: 0;
    background: linear-gradient(90deg, #1f6feb, #4c8df6);
    border-radius: inherit;
}

.refresh-progress-metric small {
    display: block;
    margin-top: 8px;
    padding: 0;
    color: #667085;
    font-size: 13px;
}

.refresh-rhythm-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #dbe3ef;
}

.refresh-rhythm-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas:
        "icon label"
        "icon value";
    column-gap: 12px;
    align-items: center;
}

.refresh-rhythm-item img {
    grid-area: icon;
    width: 38px;
    height: 38px;
}

.refresh-rhythm-item span {
    grid-area: label;
    color: #344054;
    font-weight: 700;
}

.refresh-rhythm-item strong {
    grid-area: value;
    margin-top: 3px;
    line-height: 1.35;
}

.refresh-platform-name {
    position: absolute;
    right: 24px;
    top: 24px;
    font-weight: 700;
}

.refresh-footer {
    padding: 32px 36px 30px;
}

.refresh-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    color: #202124;
}

.refresh-footer p img {
    width: 22px;
    height: 22px;
}

.refresh-footer-actions {
    display: flex;
    gap: 22px;
    align-items: center;
}

.refresh-footer-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.refresh-footer-actions img {
    width: 22px;
    height: 22px;
}

.refresh-state-button {
    width: 144px;
}

.refresh-start-button {
    width: 176px;
}

.refresh-panel .refresh-header {
    justify-content: space-between;
    min-height: 68px;
    gap: 18px;
    padding: 15px 20px;
}

.refresh-title-group,
.refresh-header-actions,
.refresh-header-actions button {
    display: flex;
    align-items: center;
}

.refresh-title-group {
    min-width: 0;
    gap: 11px;
}

.refresh-title-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    background: #eff6ff;
    border: 1px solid #d7e7ff;
    border-radius: 6px;
}

.refresh-title-icon-wrap .refresh-title-icon {
    width: 22px;
    height: 22px;
}

.refresh-panel .refresh-header h2 {
    font-size: 19px;
    line-height: 26px;
}

.refresh-header-actions {
    justify-content: flex-end;
    gap: 9px;
}

.refresh-header-actions button {
    justify-content: center;
    width: auto;
    height: 36px;
    gap: 7px;
    padding: 0 13px;
    white-space: nowrap;
}

.refresh-header-actions button img {
    width: 17px;
    height: 17px;
}

.refresh-overall-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 28px;
    padding: 0 10px;
    color: #475467;
    background: #f2f4f7;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.refresh-overall-badge::before {
    width: 7px;
    height: 7px;
    background: #98a2b3;
    border-radius: 50%;
    content: "";
}

.refresh-overall-badge.is-running {
    color: #087443;
    background: #ecfdf3;
}

.refresh-overall-badge.is-running::before {
    background: #12b76a;
}

.refresh-overall-badge.is-stale {
    color: #b42318;
    background: #fef3f2;
}

.refresh-overall-badge.is-stale::before {
    background: #f04438;
}

.refresh-overall-badge.is-paused {
    color: #b42318;
    background: #fef3f2;
}

.refresh-overall-badge.is-paused::before {
    background: #f04438;
}

.refresh-health-slot.is-ok {
    background: #12b76a;
}

.refresh-health-slot.is-degraded {
    background: #f79009;
}

.refresh-health-slot.is-error {
    background: #f04438;
}

.refresh-health-slot.is-empty {
    background: #eaecf0;
}

.refresh-health-slot.is-running {
    background: #2e90fa;
}

.platform-health {
    display: grid;
    gap: 7px;
    min-width: 0;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid #e7ebf2;
}

.platform-health-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.platform-health-head > span {
    color: #475467;
    font-size: 12px;
    font-weight: 600;
}

.platform-health-head strong {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 6px;
    color: #667085;
    background: #f2f4f7;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.platform-health.is-ok .platform-health-head strong {
    color: #087443;
    background: #ecfdf3;
}

.platform-health.is-degraded .platform-health-head strong {
    color: #b54708;
    background: #fffaeb;
}

.platform-health.is-error .platform-health-head strong {
    color: #b42318;
    background: #fef3f2;
}

.platform-health.is-running .platform-health-head strong {
    color: #175cd3;
    background: #eff8ff;
}

.platform-health > small {
    overflow: hidden;
    color: #667085;
    font-size: 12px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.platform-health-timeline {
    display: grid;
    grid-template-columns: repeat(var(--health-slot-count), minmax(0, 1fr));
    gap: 2px;
    min-width: 0;
}

.refresh-health-slot {
    display: block;
    min-width: 0;
    height: 18px;
    background: #eaecf0;
    border-radius: 2px;
    cursor: help;
    transition: transform .16s ease, opacity .16s ease;
}

.refresh-health-slot:hover {
    opacity: .82;
    transform: translateY(-1px);
}

.refresh-panel .refresh-dashboard {
    display: block;
    padding: 0;
}

.refresh-platform-section {
    padding: 16px 20px 20px;
}

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

.platform-monitor-item {
    --platform-accent: #2563eb;
    --platform-soft: #eff6ff;
    min-width: 0;
    min-height: 260px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e1e7ef;
    border-left: 3px solid var(--platform-accent);
    border-radius: 6px;
}

.platform-monitor-item.platform-liandong {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 0;
}

.platform-monitor-item.platform-catfk {
    --platform-accent: #0891b2;
    --platform-soft: #ecfeff;
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
}

.platform-monitor-item.platform-online-database {
    --platform-accent: #475467;
    --platform-soft: #f2f4f7;
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 0;
}

.platform-monitor-item.platform-online-database.is-ok {
    --platform-accent: #059669;
    --platform-soft: #ecfdf5;
}

.platform-monitor-item.platform-online-database.is-error {
    --platform-accent: #dc2626;
    --platform-soft: #fef2f2;
}

.platform-monitor-item.platform-online-database.is-stale {
    --platform-accent: #d97706;
    --platform-soft: #fffbeb;
}

.platform-monitor-item.platform-news-worker {
    --platform-accent: #7c3aed;
    --platform-soft: #f5f3ff;
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
}


.platform-monitor-item.platform-news-worker.is-error {
    --platform-accent: #dc2626;
    --platform-soft: #fef2f2;
}

.platform-monitor-item.platform-news-worker.is-stale {
    --platform-accent: #d97706;
    --platform-soft: #fffbeb;
}

.platform-monitor-head {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.platform-monitor-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.platform-history-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 72px;
    height: 28px;
    padding: 0 8px;
    gap: 5px;
    color: var(--platform-accent);
    background: var(--platform-soft);
    border: 1px solid transparent;
    border-radius: 6px;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.platform-history-button:hover {
    color: var(--platform-accent);
    background: #fff;
    border-color: var(--platform-accent);
}

.platform-history-button svg {
    display: block;
    width: 15px;
    height: 15px;
}

.refresh-timing-page .history-summary-body {
    padding-top: 16px;
    padding-bottom: 16px;
}

.timing-worker-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.timing-worker-summary-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    background: #f8fafc;
    color: #667085;
    font-size: 12px;
}

.timing-worker-summary-card strong {
    grid-column: 1 / -1;
    color: var(--timing-color);
    font-size: 14px;
}

.timing-worker-summary-card span {
    white-space: nowrap;
}

@media (max-width: 760px) {
    .timing-worker-summary {
        grid-template-columns: 1fr;
    }

    .timing-worker-summary-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.refresh-timing-page .history-current-stats > div:first-child strong,
.refresh-timing-page .history-current-stats > div:nth-child(3) strong {
    color: #175cd3;
}

@media (max-width: 600px) {
    .platform-monitor-head {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .platform-monitor-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

.platform-restart-button {
    min-height: 28px;
    padding: 4px 9px;
    border: 1px solid #fda29b;
    border-radius: 6px;
    color: #b42318;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    background: #fff;
}

.platform-restart-button:hover {
    border-color: #f04438;
    color: #912018;
    background: #fff5f4;
}

.platform-restart-button[hidden] {
    display: none;
}

.platform-monitor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--platform-soft);
    border-radius: 6px;
}

.platform-monitor-icon img {
    width: 28px;
    height: 28px;
}

.platform-monitor-title {
    min-width: 0;
}

.platform-monitor-title h3 {
    margin: 0;
    overflow: hidden;
    color: #101828;
    font-size: 16px;
    line-height: 21px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.platform-state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.platform-state::before {
    width: 6px;
    height: 6px;
    background: #98a2b3;
    border-radius: 50%;
    content: "";
}

.platform-monitor-item.is-running .platform-state {
    color: #087443;
}

.platform-monitor-item.is-running .platform-state::before {
    background: #12b76a;
}

.platform-monitor-item.is-stale .platform-state {
    color: #b42318;
}

.platform-monitor-item.is-stale .platform-state::before {
    background: #f04438;
}

.platform-monitor-item.is-paused {
    --platform-accent: #dc2626;
    --platform-soft: #fef2f2;
    border-left-color: #dc2626;
}

.platform-monitor-item.is-paused .platform-state {
    color: #b42318;
}

.platform-monitor-item.is-paused .platform-state::before {
    background: #f04438;
}

.platform-monitor-item.is-paused .platform-batch {
    color: #b42318;
    background: #fef3f2;
}

.platform-monitor-item.is-ok .platform-state {
    color: #087443;
}

.platform-monitor-item.is-ok .platform-state::before {
    background: #12b76a;
}

.platform-monitor-item.is-error .platform-state {
    color: #b42318;
}

.platform-monitor-item.is-error .platform-state::before {
    background: #f04438;
}

.platform-batch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 9px;
    color: #475467;
    background: #f2f4f7;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.platform-progress-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.platform-progress-head > span {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.platform-progress-head strong {
    color: #101828;
    font-size: 17px;
    line-height: 22px;
}

.platform-progress-head strong i {
    margin: 0 4px;
    color: #98a2b3;
    font-style: normal;
    font-weight: 500;
}

.platform-monitor-item .refresh-progress-track {
    height: 6px;
    margin-top: 8px;
    background: #eaecf0;
    border-radius: 3px;
}

.platform-monitor-item .refresh-progress-track span {
    background: var(--platform-accent);
    border-radius: 3px;
    transition: width .25s ease;
}

.platform-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 7px;
    color: #667085;
    font-size: 12px;
}

.platform-progress-meta small {
    padding: 0;
    color: var(--platform-accent);
    font-size: 12px;
    font-weight: 700;
}

.platform-monitor-item .platform-overall-track {
    height: 8px;
    border-radius: 4px;
}

.platform-monitor-item .platform-overall-track span {
    border-radius: 4px;
}

.platform-overall-head strong {
    color: var(--platform-accent);
    font-size: 19px;
}

.platform-overall-meta + .platform-progress-head {
    margin-top: 12px;
}

.liandong-progress-layout {
    margin-top: 16px;
}

.liandong-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
}

.liandong-overall-progress {
    min-width: 0;
    padding-right: 24px;
    border-right: 1px solid #e4e7ec;
}

.liandong-overall-progress .platform-progress-head {
    margin-top: 0;
}

.liandong-time-progress {
    min-width: 0;
}

.liandong-time-progress-head,
.liandong-time-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.liandong-time-progress-head {
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.liandong-time-progress-head strong {
    color: #087e8b;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: right;
}

.liandong-time-progress-track {
    height: 8px;
    margin-top: 8px;
    overflow: hidden;
    background: #e8eef0;
    border-radius: 4px;
}

.liandong-time-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    background: #0e9aa7;
    border-radius: 4px;
    transition: width .25s ease;
}

.liandong-time-progress-meta {
    margin-top: 7px;
    color: #667085;
    font-size: 11px;
    line-height: 16px;
}

.liandong-time-progress-meta strong {
    color: #344054;
    font-weight: 600;
    text-align: right;
}

.liandong-operations-layout {
    display: grid;
    grid-template-columns: minmax(430px, .85fr) minmax(0, 1.15fr);
    gap: 24px;
    min-width: 0;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e4e7ec;
}

.liandong-proxy-pool {
    --proxy-pool-accent: #98a2b3;
    min-width: 0;
    padding-right: 24px;
    border-right: 1px solid #e4e7ec;
}

.liandong-proxy-pool.is-ok {
    --proxy-pool-accent: #12b76a;
}

.liandong-proxy-pool.is-degraded {
    --proxy-pool-accent: #d97706;
}

.liandong-proxy-pool.is-error {
    --proxy-pool-accent: #f04438;
}

.liandong-pool-section + .liandong-pool-section {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #d0d5dd;
}

.liandong-pool-section-head,
.liandong-pool-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.liandong-pool-title,
.liandong-pool-metric {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.liandong-pool-title strong {
    color: #344054;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.liandong-pool-title small,
.liandong-pool-metric small {
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
}

.liandong-pool-metric {
    align-items: flex-end;
    text-align: right;
}

.liandong-pool-metric strong {
    color: var(--proxy-pool-accent);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: right;
}

.liandong-pool-progress-track {
    height: 7px;
    margin-top: 8px;
    overflow: hidden;
    background: #e4e7ec;
    border-radius: 3px;
}

.liandong-pool-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--proxy-pool-accent);
    border-radius: 3px;
    transition: width .25s ease;
}

.liandong-validation-pool {
    --proxy-pool-accent: #2563eb;
}

.liandong-validation-pool.is-complete {
    --proxy-pool-accent: #12b76a;
}

.liandong-validation-pool.is-waiting {
    --proxy-pool-accent: #d97706;
}

.liandong-validation-pool.is-error {
    --proxy-pool-accent: #f04438;
}

.liandong-pool-progress-meta {
    align-items: flex-start;
    margin-top: 7px;
    color: #667085;
    font-size: 11px;
    line-height: 16px;
}

.liandong-pool-progress-meta strong {
    color: #344054;
    font-weight: 600;
    text-align: right;
}

.liandong-pool-rule {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
    color: #667085;
    font-size: 10px;
    line-height: 15px;
}

.liandong-pool-rule span:last-child {
    text-align: right;
}

.liandong-worker-progress-section {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.liandong-worker-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.liandong-worker-section-head small {
    color: #98a2b3;
    font-size: 11px;
    font-weight: 600;
}

.liandong-worker-progress-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    flex: 1;
    min-width: 0;
    margin-top: 2px;
}

.liandong-worker-progress {
    --worker-accent: #98a2b3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 96px;
    padding: 12px 18px 14px 0;
    border-bottom: 1px solid #eaecf0;
}

.liandong-worker-progress:nth-child(even) {
    padding-right: 0;
    padding-left: 18px;
    border-left: 1px solid #eaecf0;
}

.liandong-worker-progress:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.liandong-worker-progress.is-running {
    --worker-accent: #12b76a;
}

.liandong-worker-progress.is-waiting {
    --worker-accent: #d97706;
}

.liandong-worker-progress.is-stale,
.liandong-worker-progress.is-paused {
    --worker-accent: #f04438;
}

.liandong-worker-progress-head,
.liandong-worker-progress-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.liandong-worker-progress-head strong {
    color: #101828;
    font-size: 13px;
    line-height: 18px;
}

.liandong-worker-state {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.liandong-worker-state::before {
    width: 6px;
    height: 6px;
    background: var(--worker-accent);
    border-radius: 50%;
    content: "";
}

.liandong-worker-progress.is-running .liandong-worker-state {
    color: #087443;
}

.liandong-worker-progress.is-waiting .liandong-worker-state {
    color: #b54708;
}

.liandong-worker-progress.is-stale .liandong-worker-state,
.liandong-worker-progress.is-paused .liandong-worker-state {
    color: #b42318;
}

.liandong-worker-progress-value {
    margin-top: 8px;
}

.liandong-worker-progress-value strong {
    color: #344054;
    font-size: 15px;
    line-height: 20px;
}

.liandong-worker-progress-value strong i {
    margin: 0 3px;
    color: #98a2b3;
    font-style: normal;
    font-weight: 500;
}

.liandong-worker-progress-value small {
    color: var(--worker-accent);
    font-size: 11px;
    font-weight: 700;
}

.liandong-worker-progress-track {
    height: 5px;
    margin-top: 7px;
    overflow: hidden;
    background: #eaecf0;
    border-radius: 3px;
}

.liandong-worker-progress-track span {
    display: block;
    height: 100%;
    background: var(--worker-accent);
    border-radius: 3px;
    transition: width .25s ease;
}

.liandong-worker-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    margin-top: 7px;
    color: #667085;
    font-size: 11px;
    line-height: 16px;
}

.liandong-worker-time span,
.liandong-worker-time strong {
    min-width: 0;
}

.liandong-worker-time strong {
    color: #344054;
    font-weight: 600;
    text-align: right;
}

.platform-worker-layout,
.news-progress-layout {
    display: grid;
    grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
    gap: 20px;
    margin-top: 16px;
}

.platform-overall-progress,
.news-overall-progress {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-right: 20px;
    border-right: 1px solid #e4e7ec;
}

.platform-overall-progress .platform-progress-head,
.news-overall-progress .platform-progress-head {
    margin-top: 0;
}

.platform-time-progress,
.news-analysis-progress {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e4e7ec;
}

.platform-time-progress-head,
.platform-time-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.platform-time-progress-head {
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.platform-time-progress-head strong {
    color: var(--platform-accent);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: right;
}

.platform-time-progress-track {
    height: 6px;
    margin-top: 8px;
    overflow: hidden;
    background: #e8eef0;
    border-radius: 3px;
}

.platform-time-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--platform-accent);
    border-radius: 3px;
    transition: width .25s ease;
}

.platform-time-progress-meta {
    margin-top: 7px;
    color: #667085;
    font-size: 11px;
    line-height: 16px;
}

.platform-time-progress-meta strong {
    color: #344054;
    font-weight: 600;
    text-align: right;
}

.platform-worker-progress-section {
    min-width: 0;
}

.platform-worker-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.platform-worker-section-head small {
    color: #98a2b3;
    font-size: 11px;
    font-weight: 600;
}

.platform-worker-progress {
    --worker-accent: var(--platform-accent);
    min-width: 0;
    margin-top: 8px;
    padding: 10px 0 12px;
}

.platform-worker-progress.is-running {
    --worker-accent: #12b76a;
}

.platform-worker-progress.is-waiting {
    --worker-accent: #d97706;
}

.platform-worker-progress.is-stale,
.platform-worker-progress.is-paused,
.platform-worker-progress.is-error {
    --worker-accent: #f04438;
}

.platform-worker-progress-head,
.platform-worker-progress-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.platform-worker-progress-head strong {
    color: #101828;
    font-size: 13px;
    line-height: 18px;
}

.platform-worker-progress-head > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.platform-worker-progress-head > span::before {
    width: 6px;
    height: 6px;
    background: var(--worker-accent);
    border-radius: 50%;
    content: "";
}

.platform-worker-progress.is-running .platform-worker-progress-head > span {
    color: #087443;
}

.platform-worker-progress.is-waiting .platform-worker-progress-head > span {
    color: #b54708;
}

.platform-worker-progress.is-stale .platform-worker-progress-head > span,
.platform-worker-progress.is-paused .platform-worker-progress-head > span,
.platform-worker-progress.is-error .platform-worker-progress-head > span {
    color: #b42318;
}

.platform-worker-progress-value {
    margin-top: 8px;
}

.platform-worker-progress-value strong {
    color: #344054;
    font-size: 15px;
    line-height: 20px;
}

.platform-worker-progress-value strong i {
    margin: 0 3px;
    color: #98a2b3;
    font-style: normal;
    font-weight: 500;
}

.platform-worker-progress-value small {
    color: var(--worker-accent);
    font-size: 11px;
    font-weight: 700;
}

.platform-worker-progress-track {
    height: 5px;
    margin-top: 7px;
    overflow: hidden;
    background: #eaecf0;
    border-radius: 3px;
}

.platform-worker-progress-track span {
    display: block;
    height: 100%;
    background: var(--worker-accent);
    border-radius: 3px;
    transition: width .25s ease;
}

.platform-worker-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    margin-top: 8px;
    color: #667085;
    font-size: 11px;
    line-height: 16px;
}

.platform-worker-time span,
.platform-worker-time strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.platform-worker-time strong {
    color: #344054;
    font-weight: 600;
    text-align: right;
}

.news-worker-progress-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    min-width: 0;
}

.news-worker-progress {
    padding-top: 10px;
}

.news-worker-progress + .news-worker-progress {
    border-left: 1px solid #eaecf0;
    padding-left: 18px;
}

.news-analysis-progress .platform-progress-head {
    margin-top: 0;
}

.platform-current-shop {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 34px;
    margin-top: 13px;
    padding: 7px 10px;
    background: #f8fafc;
    border-radius: 4px;
}

.platform-current-shop span {
    color: #667085;
    font-size: 12px;
    white-space: nowrap;
}

.platform-current-shop strong {
    min-width: 0;
    overflow: hidden;
    color: #344054;
    font-size: 13px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.platform-stage-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.platform-stage-metrics span {
    min-width: 0;
    color: #667085;
    font-size: 11px;
    line-height: 18px;
    white-space: nowrap;
}

.platform-stage-metrics strong {
    display: block;
    overflow: hidden;
    color: #344054;
    font-size: 12px;
    text-overflow: ellipsis;
}

.online-database-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 34px;
    gap: 6px;
    padding: 0 11px;
    color: #344054;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.online-database-upload-button img {
    width: 16px;
    height: 16px;
}

.online-database-upload-button:hover {
    color: #175cd3;
    background: #f8fafc;
    border-color: #84adff;
}

.online-database-upload-button:disabled {
    color: #667085;
    background: #f2f4f7;
    border-color: #e4e7ec;
    cursor: wait;
}

.online-database-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 15px;
    padding: 11px 0;
    background: #f8fafc;
    border-radius: 4px;
}

.online-database-metrics > div {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 0 14px;
    border-right: 1px solid #e4e7ec;
}

.online-database-metrics > div:last-child {
    border-right: 0;
}

.online-database-metrics span {
    color: #667085;
    font-size: 12px;
}

.online-database-metrics strong {
    overflow: hidden;
    color: #101828;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-worker-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 15px;
    padding: 11px 0;
    background: #f8fafc;
    border-radius: 4px;
}

.news-worker-metrics > div {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 0 14px;
    border-right: 1px solid #e4e7ec;
}

.news-worker-metrics > div:last-child {
    border-right: 0;
}

.news-worker-metrics span {
    color: #667085;
    font-size: 12px;
}

.news-worker-metrics strong {
    overflow: hidden;
    color: #101828;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-worker-message {
    min-height: 20px;
    margin-top: 10px;
    overflow: hidden;
    color: #667085;
    font-size: 12px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-progress-layout {
    grid-template-columns: minmax(0, 1fr);
}

.news-progress-layout .news-overall-progress {
    padding-right: 0;
    border-right: 0;
}

.news-volume-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 8px;
}

.news-volume-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    padding: 7px 12px;
    background: #f6f8fa;
    border: 1px solid #eef0f3;
    border-radius: 8px;
}

.news-volume-item span {
    overflow: hidden;
    color: #667085;
    font-size: 11px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-volume-item strong {
    overflow: hidden;
    color: #101828;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-volume-chart {
    width: 100%;
    height: 130px;
}

.platform-news-worker .news-progress-layout {
    margin-top: 12px;
}

.platform-news-worker .news-worker-message {
    min-height: 16px;
    margin-top: 6px;
}

.platform-news-worker .platform-health {
    margin-top: 6px;
    padding-top: 6px;
}

.platform-news-worker .refresh-health-slot {
    height: 12px;
}

.platform-news-worker .platform-health-legend {
    margin-top: 0;
}

.platform-health-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 12px;
    margin-top: 2px;
}

.platform-health-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 11px;
    line-height: 16px;
    white-space: nowrap;
}

.platform-health-legend span::before {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    content: "";
}

.platform-health-legend span.is-ok::before {
    background: #12b76a;
}

.platform-health-legend span.is-running::before {
    background: #2e90fa;
}

.platform-health-legend span.is-degraded::before {
    background: #f79009;
}

.platform-health-legend span.is-error::before {
    background: #f04438;
}

.platform-health-legend span.is-empty::before {
    background: #eaecf0;
}

.muted {
    color: #8a94a6;
    background: #fafafa;
}

.actions {
    align-items: center;
    white-space: nowrap;
}

.actions a {
    margin-right: 0;
}

.history-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 10px;
    color: #1f6feb;
    background: #f5f9ff;
    border: 1px solid #c8ddff;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
}

.history-link:hover {
    color: #0b5bd3;
    background: #eef5ff;
    border-color: #9ec5ff;
    text-decoration: none;
}

.action-col {
    width: 76px;
    min-width: 76px;
    white-space: nowrap;
}

.star-col {
    width: 52px;
    min-width: 52px;
    text-align: center;
    white-space: nowrap;
}

.star-button {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #98a2b3;
    font-size: 22px;
    line-height: 1;
}

.star-button.is-starred {
    border-color: #f5b544;
    background: #fff8e6;
    color: #f59e0b;
}

.empty {
    padding: 32px;
    text-align: center;
    color: #667085;
}

.notice {
    padding: 12px 14px;
    margin-bottom: 16px;
}

.notice.ok {
    color: #067647;
    background: #ecfdf3;
}

.notice.error {
    color: #b42318;
    background: #fef3f2;
}

.inline-form {
    display: inline;
}

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

    .container {
        width: min(100% - 20px, 430px);
        margin: 10px auto;
    }

    .toolbar {
        display: grid;
        padding: 0;
    }

    .filter-section {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
    }

    .filter-label {
        padding-top: 0;
        font-size: 14px;
    }

    .filter-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        padding: 12px;
    }

    .filter-actions .filter-shop,
    .filter-actions .filter-status,
    .filter-actions .filter-price {
        flex: 1 1 100%;
    }

    .filter-actions button,
    .filter-actions .button {
        flex: 0 0 auto;
        width: auto;
    }

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

    .domain-panel,
    .add-shop-panel {
        padding: 18px;
    }

    .admin-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .admin-card-header h2 {
        font-size: 20px;
    }

    .domain-address-card {
        min-height: 86px;
        padding: 14px;
        gap: 12px;
    }

    .domain-address-icon {
        width: 48px;
        height: 48px;
    }

    .domain-address-icon img {
        width: 26px;
        height: 26px;
    }

    .domain-address-card p {
        font-size: 15px;
        word-break: break-all;
    }

    .platform-radio-options {
        display: grid;
        grid-template-columns: 1fr;
    }

    .platform-radio-options span {
        justify-content: center;
        width: 100%;
    }

    .shop-list-toolbar,
    .shop-filter-group,
    .shop-status-summary {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .shop-search-field input {
        width: 100%;
    }

    .shop-status-summary {
        gap: 10px;
    }

    .shop-status-summary > i {
        display: none;
    }

    .shop-stat,
    .shop-stat-alert {
        justify-content: center;
        font-size: 16px;
    }

    .shop-stat b {
        font-size: 18px;
    }

    .page-shell {
        display: block;
    }

    .sidebar-stack {
        display: none;
    }

    input,
    select,
    button,
    .button {
        min-width: 0;
    }

    input[type="search"],
    input[type="text"],
    .tag-search,
    .source-config-panel,
    select,
    button,
    .button {
        width: 100%;
    }

    .filter-note {
        display: grid;
        gap: 8px;
        padding: 10px 12px;
    }

    .time-legend {
        gap: 8px;
    }

    .tag-search {
        align-items: flex-start;
        min-height: 40px;
        gap: 6px;
    }

    .tag-search input[type="search"] {
        flex: 1 1 130px;
        width: auto;
        min-width: 120px;
        height: 30px;
        font-size: 13px;
    }

    .keyword-tag {
        max-width: 100%;
        height: 28px;
        font-size: 13px;
    }

    .keyword-tag button {
        flex: 0 0 auto;
        width: 18px;
        height: 18px;
        font-size: 16px;
        line-height: 18px;
    }

    .history-tags {
        gap: 6px;
        margin-top: 6px;
    }

    .history-tag {
        width: auto;
        height: 24px;
        font-size: 12px;
    }

    .history-tag .history-tag-text {
        max-width: 118px;
        padding-left: 8px;
    }

    .history-tag .history-pin {
        width: 22px;
    }

    .filter-shop,
    .filter-status,
    .filter-price {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .filter-check {
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 32px;
        height: 32px;
    }

    .filter-check input {
        width: 14px;
        height: 14px;
        min-width: 14px;
    }

    .panel-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 14px;
    }

    .panel-title h2 {
        font-size: 17px;
    }

    .panel-title span {
        line-height: 1.5;
    }

    .table-wrap {
        overflow-x: visible;
    }

    .product-pagination {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 14px 14px;
    }

    .pagination-summary,
    .pagination-pages,
    .pagination-size {
        justify-self: center;
    }

    .pagination-summary {
        text-align: center;
    }

    .pagination-pages {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .product-table,
    .product-table thead,
    .product-table tbody,
    .product-table tr,
    .product-table th,
    .product-table td {
        display: block;
    }

    .product-table thead {
        display: none;
    }

    .product-table {
        border-collapse: separate;
    }

    .product-table tr {
        padding: 12px 14px;
        border-bottom: 1px solid #edf0f3;
    }

    .product-table tr[hidden] {
        display: none;
    }

    .duplicate-row .product-name-inner {
        padding-left: 14px;
    }

    .duplicate-row .product-name-inner::before {
        content: none;
    }

    .product-table tr:last-child {
        border-bottom: 0;
    }

    .product-table td {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        padding: 6px 0;
        border-bottom: 0;
    }

    .product-table th:nth-child(n),
    .product-table td:nth-child(n) {
        width: auto;
    }

    .product-table td::before {
        color: #667085;
        font-weight: 600;
        content: "";
    }

    .product-table td[data-label]::before {
        content: attr(data-label);
    }

    .product-table td:nth-child(1)::before {
        content: "状态";
    }

    .product-table td:nth-child(2)::before {
        content: "商品";
    }

    .product-table td:nth-child(3)::before {
        content: "分类";
    }

    .product-table td:nth-child(4)::before {
        content: "价格";
    }

    .product-table td:nth-child(5)::before {
        content: "库存";
    }

    .product-table td:nth-child(6)::before {
        content: "更新时间";
    }

    .product-table td:nth-child(7)::before {
        content: "操作";
    }

    .product-table td[data-label]::before {
        content: attr(data-label);
    }

    .product-name {
        min-width: 0;
    }

    .product-name-inner {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        min-width: 0;
    }

    .product-name-inner::before {
        content: none;
    }

    .duplicate-row .product-name-inner::before {
        content: none;
    }

    .product-title {
        grid-column: 2;
        line-height: 1.45;
    }

    .product-name-inner img,
    .product-image-placeholder {
        grid-column: 1;
        width: 42px;
        height: 42px;
    }

    .product-name-inner > div {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .product-name-inner img + div,
    .product-image-placeholder + div {
        grid-column: 2;
    }

    .status,
    .source-tag {
        justify-self: start;
    }

    .num {
        text-align: left;
    }

    .actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 6px 0;
        white-space: normal;
    }

    .actions::before {
        flex: 0 0 72px;
    }

    .actions a {
        margin-right: 0;
    }

    .empty {
        display: block;
        padding: 26px 12px;
    }

    .empty::before {
        content: none;
    }

    .product-table td.empty {
        display: block;
        width: auto;
        padding: 26px 12px;
        text-align: center;
    }

    .product-table td.empty::before {
        content: none;
    }

    .action-col button {
        width: auto;
    }

    .refresh-dashboard {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 18px 0;
    }

    .refresh-header {
        min-height: auto;
        padding: 20px 18px;
    }

    .refresh-header h2 {
        font-size: 22px;
    }

    .refresh-card {
        padding: 18px;
    }

    .refresh-progress-grid,
    .refresh-rhythm-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .refresh-progress-metric {
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid #dbe3ef;
    }

    .refresh-progress-metric:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .refresh-platform-name {
        position: static;
        display: block;
        margin-top: 18px;
    }

    .refresh-footer {
        padding: 22px 18px;
    }

    .refresh-footer-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .refresh-state-button,
    .refresh-start-button {
        width: 100%;
    }

    .source-import {
        gap: 16px;
    }

    .source-import-hero {
        gap: 12px;
        padding: 4px 0 8px;
    }

    .source-hero-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .source-hero-icon img {
        width: 30px;
        height: 30px;
    }

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

    .source-import-hero p {
        margin-top: 8px;
        font-size: 14px;
    }

    .source-entry-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .source-entry-card {
        grid-template-columns: 46px minmax(0, 1fr) 18px;
        min-height: 78px;
        gap: 12px;
        padding: 14px;
    }

    .source-entry-icon {
        width: 46px;
        height: 46px;
    }

    .source-entry-icon img {
        width: 27px;
        height: 27px;
    }

    .source-entry-copy {
        gap: 6px;
    }

    .source-entry-copy strong {
        font-size: 18px;
    }

    .source-entry-copy small {
        font-size: 13px;
    }

    .source-entry-arrow {
        font-size: 24px;
    }

    .source-config-panel {
        gap: 18px;
        padding: 18px;
    }

    .source-config-panel h3 {
        font-size: 21px;
    }

    .source-config-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .source-config-grid label {
        gap: 8px;
        font-size: 14px;
    }

    .source-search-actions {
        flex-direction: column;
        gap: 10px;
    }

    .source-search-actions button {
        width: 100%;
        height: 40px;
        font-size: 15px;
    }

    .source-search-actions button span {
        font-size: 22px;
    }

    .source-import-status {
        justify-content: flex-start;
        text-align: left;
    }

    .refresh-panel .refresh-header {
        align-items: flex-start;
        padding: 14px 16px;
    }

    .refresh-header-actions {
        flex-wrap: wrap;
        gap: 8px;
    }

    .refresh-overall-badge {
        order: -1;
    }

    .refresh-header-actions button {
        width: auto;
        height: 34px;
        padding: 0 10px;
        font-size: 13px;
    }

    .refresh-health-slot {
        height: 16px;
    }

    .refresh-panel .refresh-dashboard {
        display: block;
        padding: 0;
    }

    .refresh-platform-section {
        padding: 12px 16px 16px;
    }

    .platform-monitor-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .platform-monitor-item {
        min-height: 254px;
        padding: 14px;
    }

    .platform-monitor-item.platform-liandong,
    .platform-monitor-item.platform-catfk,
    .platform-monitor-item.platform-news-worker,
    .platform-monitor-item.platform-online-database {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .platform-monitor-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
        grid-column: 1 / -1;
    }

    .news-volume-item strong {
        font-size: 16px;
    }

    .liandong-overview-grid,
    .liandong-operations-layout,
    .platform-worker-layout,
    .news-progress-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-volume-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .liandong-overall-progress,
    .platform-overall-progress,
    .news-overall-progress {
        padding-right: 0;
        padding-bottom: 14px;
        border-right: 0;
        border-bottom: 1px solid #e4e7ec;
    }

    .liandong-operations-layout {
        margin-top: 14px;
        padding-top: 14px;
    }

    .liandong-proxy-pool {
        padding-right: 0;
        padding-bottom: 14px;
        border-right: 0;
        border-bottom: 1px solid #e4e7ec;
    }

    .liandong-worker-progress-grid {
        margin-top: 2px;
    }

    .liandong-worker-progress {
        min-height: 104px;
        padding-right: 10px;
    }

    .liandong-worker-progress:nth-child(even) {
        padding-left: 10px;
    }

    .liandong-time-progress-head,
    .liandong-time-progress-meta,
    .liandong-pool-section-head,
    .liandong-pool-progress-meta {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .liandong-pool-metric {
        align-items: flex-start;
        text-align: left;
    }

    .liandong-pool-progress-meta strong {
        text-align: left;
    }

    .liandong-pool-rule {
        flex-direction: column;
        gap: 2px;
    }

    .liandong-pool-rule span:last-child {
        text-align: left;
    }

    .liandong-worker-time {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
    }

    .liandong-worker-time strong {
        text-align: left;
    }

    .platform-time-progress-head,
    .platform-time-progress-meta {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .platform-worker-time {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
    }

    .platform-worker-time strong {
        text-align: left;
    }

    .news-worker-progress-grid {
        grid-template-columns: 1fr;
    }

    .news-worker-progress + .news-worker-progress {
        padding-left: 0;
        border-top: 1px solid #eaecf0;
        border-left: 0;
    }

    .platform-stage-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .platform-monitor-item.platform-online-database {
        min-height: 0;
    }

    .online-database-upload-button {
        height: 32px;
        padding: 0 9px;
    }

    .online-database-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .online-database-metrics > div {
        min-height: 45px;
        padding: 0 10px;
    }

    .online-database-metrics > div:nth-child(2) {
        border-right: 0;
    }

    .online-database-metrics > div:nth-child(n + 3) {
        padding-top: 9px;
        border-top: 1px solid #e4e7ec;
    }

    .news-worker-metrics {
        grid-template-columns: 1fr;
    }

    .news-worker-metrics > div {
        min-height: 45px;
        padding: 0 10px;
        border-right: 0;
    }

    .news-worker-metrics > div + div {
        padding-top: 9px;
        border-top: 1px solid #e4e7ec;
    }

    .platform-monitor-head {
        grid-template-columns: 42px minmax(0, 1fr) auto;
    }

    .platform-monitor-icon {
        width: 42px;
        height: 42px;
    }

    .platform-monitor-icon img {
        width: 26px;
        height: 26px;
    }
}
