.zhbo-app[v-cloak] {
    display: none;
}

.zhbo-page {
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: #eef2f5;
    color: #263241;
    font-family: "Open Sans", Arial, sans-serif;
}

.zhbo-page button {
    font: inherit;
}

.zhbo-app {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-top: 70px;
}

.zhbo-appbar {
    position: sticky;
    top: 70px;
    z-index: 90;
    min-height: 56px;
    border-bottom: 1px solid #176fae;
    background: #1f82c6;
    color: #fff;
    box-shadow: 0 1px 3px rgba(18, 35, 53, 0.16);
}

.zhbo-appbar-inner,
.zhbo-navigation-inner,
.zhbo-workspace {
    box-sizing: border-box;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.zhbo-appbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 56px;
    padding: 7px 24px;
}

.zhbo-appbar-title,
.zhbo-operator,
.zhbo-operator-actions {
    display: flex;
    align-items: center;
}

.zhbo-appbar-title {
    gap: 10px;
    min-width: 0;
}

.zhbo-appbar-title > .glyphicon {
    font-size: 20px;
}

.zhbo-appbar-title small,
.zhbo-appbar-title strong {
    display: block;
}

.zhbo-appbar-title small {
    margin-bottom: 1px;
    font-size: 11px;
    line-height: 1.2;
    opacity: 0.8;
}

.zhbo-appbar-title strong {
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zhbo-operator {
    gap: 7px;
    min-height: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.zhbo-operator > span:last-child {
    line-height: 1.25;
}

.zhbo-operator .glyphicon {
    top: 0;
    line-height: 1;
}

.zhbo-operator-actions {
    flex: 0 0 auto;
    align-self: stretch;
    gap: 10px;
}

.zhbo-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
}

.zhbo-logout:hover,
.zhbo-logout:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    text-decoration: none;
}

.zhbo-logout:focus {
    outline: 0;
}

.zhbo-logout:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.zhbo-navigation {
    position: sticky;
    top: 126px;
    z-index: 80;
    border-bottom: 1px solid #d6dee6;
    background: #fff;
    box-shadow: 0 1px 2px rgba(25, 45, 64, 0.07);
}

.zhbo-navigation-inner {
    display: flex;
    align-items: stretch;
    min-height: 46px;
    padding: 0 24px;
}

.zhbo-navigation-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 154px;
    min-height: 46px;
    padding: 10px 18px;
    border: 0;
    background: transparent;
    color: #4c5c6d;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.zhbo-navigation-item::after {
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 3px;
    background: transparent;
    content: "";
}

.zhbo-navigation-item:hover {
    background: #f4f8fb;
    color: #0063b0;
}

.zhbo-navigation-item:focus {
    outline: 0;
}

.zhbo-navigation-item:focus-visible {
    outline: 2px solid #72b9e8;
    outline-offset: -3px;
}

.zhbo-navigation-item.is-active {
    background: #f7fbfe;
    color: #0063b0;
}

.zhbo-navigation-item.is-active::after {
    background: #0063b0;
}

.zhbo-notification,
.zhbo-load-error,
.zhbo-script-warning {
    max-width: 1552px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #9bc8e8;
    border-radius: 4px;
    background: #edf7fd;
    color: #235678;
}

.zhbo-notification {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 9px;
    width: calc(100% - 48px);
    max-width: 390px;
    margin: 0;
    padding: 11px 12px;
    box-shadow: 0 8px 24px rgba(25, 45, 64, 0.2);
    font-size: 13px;
    line-height: 1.4;
    animation: zhbo-toast-in 180ms ease-out both;
}

.zhbo-notification > span:nth-child(2) {
    flex: 1 1 auto;
}

.zhbo-notification button {
    flex: 0 0 auto;
    padding: 4px;
    border: 0;
    background: transparent;
    color: inherit;
}

.zhbo-notification button:focus {
    outline: 2px solid #72b9e8;
    outline-offset: 1px;
}

.zhbo-notification.is-success {
    border-color: #8fc3a4;
    background: #edf8f1;
    color: #246c40;
}

.zhbo-notification.is-warning {
    border-color: #d9b46f;
    background: #fff7e7;
    color: #765019;
}

.zhbo-notification.is-danger {
    border-color: #d89999;
    background: #fff0f0;
    color: #8c2929;
}

.zhbo-workspace {
    padding: 28px 24px 40px;
}

.zhbo-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.zhbo-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #687789;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.zhbo-summary-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.zhbo-summary-toolbar strong {
    display: block;
    color: #263241;
    font-size: 18px;
    font-weight: 600;
}

.zhbo-summary-actions,
.zhbo-card-actions,
.zhbo-form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.zhbo-button,
.zhbo-link-button,
.zhbo-table-link {
    border: 0;
    font: inherit;
}

.zhbo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 7px 14px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.zhbo-button-primary {
    border-color: #0063b0;
    background: #0063b0;
    color: #fff;
}

.zhbo-button-primary:hover,
.zhbo-button-primary:focus {
    border-color: #004f8d;
    background: #004f8d;
    color: #fff;
}

.zhbo-button-secondary {
    border-color: #b8c6d2;
    background: #fff;
    color: #31536d;
}

.zhbo-button-secondary:hover,
.zhbo-button-secondary:focus {
    border-color: #0063b0;
    background: #f4f9fc;
    color: #0063b0;
}

.zhbo-button-danger {
    border-color: #b94444;
    background: #fff;
    color: #a42e2e;
}

.zhbo-button-danger:hover,
.zhbo-button-danger:focus {
    background: #fff2f2;
}

.zhbo-button:focus,
.zhbo-link-button:focus,
.zhbo-table-link:focus {
    outline: 0;
}

.zhbo-button:focus-visible,
.zhbo-link-button:focus-visible,
.zhbo-table-link:focus-visible {
    outline: 2px solid #72b9e8;
    outline-offset: 2px;
}

.zhbo-button[disabled] {
    border-color: #d2d9df;
    background: #e8edf1;
    color: #7d8994;
    cursor: not-allowed;
    opacity: 1;
}

.zhbo-link-button,
.zhbo-table-link {
    padding: 0;
    background: transparent;
    color: #0063b0;
    font-weight: 600;
    text-align: left;
}

.zhbo-link-button:hover,
.zhbo-table-link:hover {
    color: #004f8d;
    text-decoration: underline;
}

.zhbo-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #d9e1e8;
    border-top: 3px solid #5ba6d6;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(27, 46, 64, 0.04);
}

.zhbo-metric {
    min-width: 0;
    padding: 15px 16px;
    border: 0;
    border-right: 1px solid #e1e7ec;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.zhbo-metric:last-child {
    border-right: 0;
}

.zhbo-metric > span,
.zhbo-metric > strong,
.zhbo-metric > small {
    display: block;
}

.zhbo-metric > span {
    color: #526476;
    font-size: 12px;
    font-weight: 600;
}

.zhbo-metric > strong {
    margin: 6px 0 3px;
    overflow: hidden;
    color: #1d2e3e;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.1;
    text-overflow: ellipsis;
}

.zhbo-metric > small {
    color: #758493;
    font-size: 11px;
}

.zhbo-summary-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.zhbo-panel {
    min-width: 0;
    border: 1px solid #d9e1e8;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(27, 46, 64, 0.04);
}

.zhbo-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8ed;
}

.zhbo-panel-head h3 {
    margin: 0;
    color: #263241;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.zhbo-status-list {
    margin: 0;
    padding: 7px 16px 10px;
    list-style: none;
}

.zhbo-status-list li {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    border-bottom: 1px solid #edf1f4;
    color: #3f5163;
    font-size: 12px;
}

.zhbo-status-list li:last-child {
    border-bottom: 0;
}

.zhbo-status-list strong {
    color: #25384a;
    font-size: 14px;
}

.zhbo-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #80909f;
}

.zhbo-status-dot.is-info {
    background: #2b83c5;
}

.zhbo-status-dot.is-warning {
    background: #bd7813;
}

.zhbo-status-dot.is-success {
    background: #2d854f;
}

.zhbo-status-dot.is-danger {
    background: #b94444;
}

.zhbo-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.zhbo-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
    color: #344657;
    font-size: 12px;
}

.zhbo-table th,
.zhbo-table td {
    padding: 9px 11px;
    border-bottom: 1px solid #e5eaee;
    text-align: left;
    vertical-align: middle;
}

.zhbo-table th {
    background: #f5f7f9;
    color: #536576;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.zhbo-table tbody tr:hover td {
    background: #f8fbfd;
}

.zhbo-table td small {
    display: block;
    max-width: 260px;
    margin-top: 2px;
    overflow: hidden;
    color: #7a8794;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zhbo-recent-table {
    min-width: 680px;
}

.zhbo-number-cell {
    text-align: right !important;
    white-space: nowrap;
}

.zhbo-status {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 8px;
    border: 1px solid #bec9d2;
    border-radius: 11px;
    background: #f3f5f7;
    color: #586a7a;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.zhbo-status.is-info {
    border-color: #8fc3e5;
    background: #eaf5fc;
    color: #176da7;
}

.zhbo-status.is-warning {
    border-color: #e1bf80;
    background: #fff7e7;
    color: #8b5b10;
}

.zhbo-status.is-success {
    border-color: #9bc9ad;
    background: #edf8f1;
    color: #246c40;
}

.zhbo-status.is-danger {
    border-color: #e2abab;
    background: #fff0f0;
    color: #9a3030;
}

.zhbo-upload-form {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.zhbo-instruction {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-left: 4px solid #2b83c5;
}

.zhbo-instruction-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: #eaf5fc;
    color: #176da7;
    font-size: 17px;
}

.zhbo-instruction-body h3 {
    margin: 0;
    color: #263241;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.zhbo-instruction-body p {
    margin: 4px 0 0;
    color: #657586;
    font-size: 12px;
    line-height: 1.5;
}

.zhbo-help-text {
    max-width: 360px;
    color: #738290;
    font-size: 11px;
    line-height: 1.4;
    text-align: right;
}

.zhbo-file-options {
    display: grid;
    gap: 8px;
    padding: 14px 16px 0;
}

.zhbo-file-option {
    display: grid;
    grid-template-columns: auto 20px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    margin: 0;
    padding: 9px 12px;
    border: 1px solid #d7e0e7;
    border-radius: 4px;
    background: #fff;
    color: #344657;
    cursor: pointer;
    font-weight: 400;
}

.zhbo-file-option:hover {
    border-color: #87bcdc;
    background: #f8fbfd;
}

.zhbo-file-option.is-selected {
    border-color: #2b83c5;
    background: #f1f8fc;
    box-shadow: inset 3px 0 0 #2b83c5;
}

.zhbo-file-option input {
    margin: 0;
}

.zhbo-file-option > .glyphicon {
    color: #2b83c5;
    font-size: 17px;
}

.zhbo-file-option-body,
.zhbo-file-option-body strong,
.zhbo-file-option-body small,
.zhbo-file-option-body span {
    display: block;
    min-width: 0;
}

.zhbo-file-option-body strong {
    color: #26394a;
    font-size: 13px;
    font-weight: 600;
}

.zhbo-file-option-body small {
    margin-top: 1px;
    color: #0063b0;
    font-size: 11px;
}

.zhbo-file-option-body span {
    margin-top: 3px;
    color: #6c7b89;
    font-size: 11px;
    line-height: 1.35;
}

.zhbo-file-row-count {
    color: #647687;
    font-size: 11px;
    white-space: nowrap;
}

.zhbo-upload-note {
    position: relative;
    margin: 14px 16px 0;
}

.zhbo-upload-note label {
    display: block;
    margin-bottom: 5px;
    color: #344657;
    font-size: 12px;
    font-weight: 600;
}

.zhbo-upload-note textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 74px;
    padding: 9px 11px 22px;
    resize: vertical;
    border: 1px solid #c9d3dc;
    border-radius: 4px;
    background: #fff;
    color: #2f4253;
    font: inherit;
    font-size: 13px;
    line-height: 1.45;
}

.zhbo-upload-note textarea:focus {
    border-color: #2b83c5;
    outline: 2px solid rgba(43, 131, 197, 0.22);
    outline-offset: 1px;
}

.zhbo-upload-note > span {
    position: absolute;
    right: 9px;
    bottom: 5px;
    color: #7a8794;
    font-size: 10px;
}

.zhbo-upload-parameters .zhbo-form-actions {
    min-height: 58px;
    margin-top: 14px;
    padding: 10px 16px;
    border-top: 1px solid #e2e8ed;
    background: #fafbfc;
}

.zhbo-selected-file {
    color: #657586;
    font-size: 11px;
}

.zhbo-selected-file strong {
    color: #3a4d5f;
}

.zhbo-upload-empty {
    min-height: 220px;
}

.zhbo-preview {
    overflow: hidden;
}

.zhbo-preview-content {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.zhbo-validation-summary {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 0;
    border-bottom: 1px solid #d9e1e8;
    border-radius: 0;
    background: #fff;
}

.zhbo-validation-summary > div {
    min-width: 0;
    padding: 12px 14px;
    border-right: 1px solid #e3e8ed;
}

.zhbo-validation-summary > div:last-child {
    border-right: 0;
}

.zhbo-validation-summary span,
.zhbo-validation-summary strong {
    display: block;
}

.zhbo-validation-summary span {
    color: #687789;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.zhbo-validation-summary strong {
    margin-top: 4px;
    color: #25384a;
    font-size: 17px;
    font-weight: 600;
}

.zhbo-validation-summary .is-success strong {
    color: #246c40;
}

.zhbo-validation-summary .is-danger strong {
    color: #a53232;
}

.zhbo-alert {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid #dcc185;
    border-radius: 4px;
    background: #fff8e9;
    color: #795313;
    font-size: 12px;
    line-height: 1.45;
}

.zhbo-alert.is-danger {
    border-color: #dfadad;
    background: #fff1f1;
    color: #8f2d2d;
}

.zhbo-preview-content > .zhbo-alert {
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.zhbo-validation-summary + .zhbo-alert {
    border-top: 0;
}

.zhbo-preview-table {
    overflow: hidden;
}

.zhbo-registry-table {
    min-width: 1180px;
}

.zhbo-registry-table caption {
    padding: 9px 11px;
    border-bottom: 1px solid #e1e7ec;
    background: #fff;
    color: #46596b;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.zhbo-registry-table tr.is-error td {
    background: #fff6f6;
}

.zhbo-registry-table tr.is-new td {
    background: #f4faff;
}

.zhbo-registry-table td:nth-child(3),
.zhbo-registry-table td:nth-child(4) {
    min-width: 190px;
}

.zhbo-result-cell {
    min-width: 210px;
}

.zhbo-row-errors {
    margin: 0;
    padding: 0 0 0 15px;
    color: #9a3030;
    font-size: 10px;
    line-height: 1.35;
}

.zhbo-result {
    display: inline-flex;
    padding: 3px 7px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
}

.zhbo-result.is-success {
    background: #e8f6ed;
    color: #246c40;
}

.zhbo-result.is-info {
    background: #e7f3fb;
    color: #176da7;
}

.zhbo-task-detail {
    display: grid;
    gap: 0;
}

.zhbo-back-button {
    justify-self: start;
    margin-bottom: 10px;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: #0063b0;
    font-size: 13px;
    font-weight: 600;
}

.zhbo-back-button:hover,
.zhbo-back-button:focus-visible {
    color: #004f8d;
    text-decoration: underline;
}

.zhbo-back-button:focus {
    outline: 0;
}

.zhbo-back-button:focus-visible {
    outline: 2px solid #72b9e8;
    outline-offset: 3px;
}

.zhbo-task-detail-head {
    padding: 16px 18px;
    border-radius: 4px 4px 0 0;
}

.zhbo-task-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.zhbo-task-title-row h3 {
    margin: 2px 0 0;
    color: #263241;
    font-size: 22px;
    font-weight: 600;
}

.zhbo-status-large {
    min-height: 27px;
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 11px;
}

.zhbo-task-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e2e8ed;
}

.zhbo-task-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 22px;
    margin: 14px 0 0;
}

.zhbo-task-meta > div {
    min-width: 0;
}

.zhbo-task-meta dt {
    margin-bottom: 4px;
    color: #718090;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.zhbo-task-meta dd {
    margin: 0;
    overflow: hidden;
    color: #344657;
    font-size: 13px;
    line-height: 1.4;
    text-overflow: ellipsis;
}

.zhbo-task-meta-note {
    grid-column: 1 / -1;
    padding-top: 13px;
    border-top: 1px solid #edf1f4;
}

.zhbo-detail-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-right: 1px solid #d9e1e8;
    border-left: 1px solid #d9e1e8;
    background: #fff;
}

.zhbo-detail-metric {
    min-width: 0;
    padding: 13px 14px;
    border: 0;
    border-right: 1px solid #d9e1e8;
    border-bottom: 1px solid #d9e1e8;
    border-left: 3px solid #8ca0b2;
    border-radius: 0;
    background: #fff;
}

.zhbo-detail-metric:last-child {
    border-right: 0;
}

.zhbo-task-results {
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.zhbo-detail-metric.is-success {
    border-left-color: #2d854f;
}

.zhbo-detail-metric.is-danger {
    border-left-color: #b94444;
}

.zhbo-detail-metric.is-info {
    border-left-color: #2b83c5;
}

.zhbo-detail-metric > span,
.zhbo-detail-metric > strong {
    display: block;
}

.zhbo-detail-metric > span {
    color: #617284;
    font-size: 11px;
    font-weight: 600;
}

.zhbo-detail-metric > strong {
    margin-top: 5px;
    overflow: hidden;
    color: #263241;
    font-size: 20px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zhbo-detail-metric strong small {
    font-size: 11px;
    font-weight: 600;
}

.zhbo-panel-note {
    color: #687789;
    font-size: 12px;
    white-space: nowrap;
}

.zhbo-detail-table td:last-child {
    min-width: 230px;
}

.zhbo-row-result {
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.zhbo-row-result.is-success {
    color: #246c40;
}

.zhbo-row-result.is-danger {
    color: #9a3030;
}

.zhbo-new-badge {
    display: inline-block;
    margin-left: 4px;
    padding: 2px 5px;
    border-radius: 3px;
    background: #e7f3fb;
    color: #176da7;
    font-size: 9px;
    font-weight: 700;
}

.zhbo-preview-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    min-height: 58px;
    padding: 10px 14px;
    border: 0;
    border-top: 1px solid #d9e1e8;
    border-radius: 0;
    background: #fafbfc;
}

.zhbo-preview-actions > span {
    color: #657586;
    font-size: 12px;
}

.zhbo-preview-actions > span strong {
    color: #26394a;
}

.zhbo-modal-backdrop {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(20, 34, 47, 0.48);
}

.zhbo-modal {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    box-sizing: border-box;
    width: 100%;
    max-width: 520px;
    padding: 20px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(13, 30, 46, 0.28);
}

.zhbo-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eaf5fc;
    color: #176da7;
    font-size: 18px;
}

.zhbo-modal-icon.is-danger {
    background: #fff0f0;
    color: #a53232;
}

.zhbo-modal-body h2 {
    margin: 0 0 7px;
    color: #25384a;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.zhbo-modal-body p {
    margin: 0;
    color: #5d6f80;
    font-size: 13px;
    line-height: 1.55;
}

.zhbo-modal-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 4px;
}

.zhbo-task-filters {
    margin-bottom: 10px;
    padding: 16px;
}

.zhbo-task-filter-main {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    gap: 10px;
}

.zhbo-task-filter-main > label,
.zhbo-extra-filters label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    color: #4d5d6d;
    font-size: 12px;
    font-weight: 600;
}

.zhbo-search-control {
    position: relative;
}

.zhbo-search-control .glyphicon {
    position: absolute;
    top: 50%;
    left: 12px;
    color: #7f8c99;
    transform: translateY(-50%);
}

.zhbo-search-control input,
.zhbo-extra-filters select {
    box-sizing: border-box;
    width: 100%;
    min-height: 38px;
    border: 1px solid #b7c4cf;
    border-radius: 4px;
    background: #fff;
    color: #263241;
    font-size: 14px;
}

.zhbo-search-control input {
    padding: 8px 12px 8px 36px;
}

.zhbo-extra-filters select {
    padding: 7px 30px 7px 10px;
}

.zhbo-search-control input:focus,
.zhbo-extra-filters select:focus {
    border-color: #1681c4;
    outline: 2px solid rgba(22, 129, 196, 0.2);
    outline-offset: 1px;
}

.zhbo-extra-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e3e8ed;
}

.zhbo-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 4px;
    padding: 0 6px;
    border-radius: 10px;
    background: #0063b0;
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.zhbo-link-button {
    align-self: center;
    padding: 8px 2px;
    border: 0;
    background: transparent;
    color: #0063b0;
    font-size: 13px;
    text-decoration: underline;
}

.zhbo-link-button:hover,
.zhbo-link-button:focus {
    color: #004f8c;
}

.zhbo-task-journal .zhbo-panel-head {
    align-items: center;
}

.zhbo-active-filter-note {
    color: #687789;
    font-size: 12px;
}

.zhbo-task-table {
    min-width: 1080px;
}

.zhbo-task-row {
    cursor: pointer;
}

.zhbo-task-row:focus {
    outline: 0;
}

.zhbo-task-row:focus-visible {
    outline: 2px solid #2b83c5;
    outline-offset: -2px;
}

.zhbo-task-row:hover td,
.zhbo-task-row:focus-visible td {
    background: #eef7fc !important;
}

.zhbo-task-table td:first-child {
    min-width: 190px;
}

.zhbo-task-table td:first-child small {
    display: block;
    max-width: 210px;
    margin-top: 4px;
    overflow: hidden;
    color: #687789;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zhbo-task-note {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zhbo-inline-empty {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 42px 20px;
    color: #687789;
    text-align: center;
}

.zhbo-inline-empty > .glyphicon {
    margin-bottom: 12px;
    color: #8b9aaa;
    font-size: 28px;
}

.zhbo-inline-empty strong {
    margin-bottom: 4px;
    color: #263241;
    font-size: 16px;
}

.zhbo-inline-empty p {
    margin: 0 0 16px;
}

.zhbo-task-detail-placeholder .zhbo-button {
    margin-top: 18px;
}

.zhbo-empty-panel {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    padding: 44px 24px;
    border: 1px solid #d9e1e8;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(27, 46, 64, 0.05);
    text-align: center;
}

.zhbo-empty-panel:focus {
    outline: 2px solid #8bc7ec;
    outline-offset: 3px;
}

.zhbo-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #e9f4fb;
    color: #0063b0;
    font-size: 25px;
}

.zhbo-empty-panel h2,
.zhbo-empty-panel h3 {
    margin: 0 0 10px;
    color: #263241;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
}

.zhbo-empty-panel p {
    max-width: 610px;
    margin: 0;
    color: #687789;
    font-size: 14px;
    line-height: 1.6;
}

.zhbo-load-error,
.zhbo-script-warning {
    margin-top: 100px;
    padding: 16px 18px;
    text-align: center;
}

@media (max-width: 767px) {
    .zhbo-page .demo-header {
        position: static;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        padding: 10px 0;
    }

    .zhbo-page .demo-header-inner {
        gap: 8px;
    }

    .zhbo-page .demo-header-logo {
        flex: 1 1 auto;
    }

    .zhbo-page .demo-header-logo img {
        flex: 0 0 auto;
        height: 26px;
        margin-right: 8px;
    }

    .zhbo-page .demo-header-title {
        font-size: 13px;
        line-height: 1.25;
    }

    .zhbo-page .demo-header-note {
        font-size: 10px;
        line-height: 1.3;
    }

    .zhbo-page .demo-header-back {
        justify-content: center;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .zhbo-page .demo-header-back .glyphicon {
        margin-right: 0;
    }

    .zhbo-back-label {
        display: none;
    }

    .zhbo-app {
        padding-top: 0;
    }

    .zhbo-appbar,
    .zhbo-navigation {
        position: static;
    }

    .zhbo-appbar-inner {
        min-height: 54px;
        padding: 7px 15px;
    }

    .zhbo-appbar-title > .glyphicon {
        display: none;
    }

    .zhbo-appbar-title strong {
        font-size: 14px;
    }

    .zhbo-operator {
        max-width: calc(100% - 38px);
        overflow: hidden;
        font-size: 11px;
        text-overflow: ellipsis;
    }

    .zhbo-operator-actions {
        max-width: 52%;
        gap: 6px;
    }

    .zhbo-logout {
        width: 28px;
        height: 28px;
    }

    .zhbo-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .zhbo-navigation-inner {
        min-width: 360px;
        padding: 0;
    }

    .zhbo-navigation-item {
        min-width: auto;
        min-height: 44px;
        padding: 9px 15px;
        font-size: 12px;
    }

    .zhbo-navigation-item::after {
        right: 9px;
        left: 9px;
    }

    .zhbo-workspace {
        padding: 18px 15px 28px;
    }

    .zhbo-summary-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .zhbo-summary-actions .zhbo-button {
        flex: 1 1 auto;
    }

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

    .zhbo-metric {
        border-bottom: 1px solid #e1e7ec;
    }

    .zhbo-metric:nth-child(2n) {
        border-right: 0;
    }

    .zhbo-metric:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

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

    .zhbo-instruction {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .zhbo-instruction .zhbo-button {
        grid-column: 1 / -1;
    }

    .zhbo-file-option {
        grid-template-columns: auto 18px minmax(0, 1fr);
    }

    .zhbo-file-row-count {
        grid-column: 3;
    }

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

    .zhbo-validation-summary > div {
        border-right: 0;
        border-bottom: 1px solid #e3e8ed;
    }

    .zhbo-validation-summary > div:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .zhbo-preview-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .zhbo-preview-actions .zhbo-button {
        width: 100%;
    }

    .zhbo-modal {
        padding: 16px;
    }

    .zhbo-task-filter-main,
    .zhbo-extra-filters {
        grid-template-columns: 1fr;
    }

    .zhbo-task-filters {
        padding: 14px;
    }

    .zhbo-task-filter-main > .zhbo-button,
    .zhbo-task-filter-main > .zhbo-link-button {
        width: 100%;
    }

    .zhbo-task-journal .zhbo-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .zhbo-task-title-row {
        flex-direction: column;
    }

    .zhbo-task-actions .zhbo-button {
        width: 100%;
    }

    .zhbo-task-meta,
    .zhbo-detail-metrics {
        grid-template-columns: 1fr;
    }

    .zhbo-detail-metric {
        border-right: 0;
    }

    .zhbo-task-meta-note {
        grid-column: auto;
    }

    .zhbo-empty-panel {
        min-height: 280px;
        padding: 36px 18px;
    }

    .zhbo-empty-panel h2 {
        font-size: 18px;
    }

    .zhbo-empty-panel p {
        font-size: 13px;
    }

    .zhbo-notification {
        right: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
        margin: 0;
    }
}

@keyframes zhbo-toast-in {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .zhbo-notification {
        animation: none;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .zhbo-metrics {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .zhbo-metric {
        grid-column: span 2;
    }

    .zhbo-metric:nth-child(3) {
        border-right: 0;
    }

    .zhbo-metric:nth-child(n+4) {
        grid-column: span 3;
        border-top: 1px solid #e1e7ec;
    }

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

    .zhbo-task-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zhbo-detail-metrics {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .zhbo-detail-metric {
        grid-column: span 2;
    }

    .zhbo-detail-metric:nth-child(3) {
        border-right: 0;
    }

    .zhbo-detail-metric:nth-child(n+4) {
        grid-column: span 3;
    }
}
