.xle-workspace {
  --xle-bg: var(--panel, #fff);
  --xle-text: var(--text, #172033);
  --xle-muted: var(--muted, #64748b);
  --xle-line: var(--line, #dce3ed);
  --xle-green: #107c41;
  --xle-soft: #e9f5ee;
  color: var(--xle-text);
  font-family: inherit;
  min-width: 0;
  width: 100%;
  position: relative;
}
html[data-theme="dark"] .xle-workspace {
  --xle-green: #62d49b;
  --xle-soft: #183b30;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .xle-workspace {
    --xle-green: #62d49b;
    --xle-soft: #183b30;
  }
}
.xle-section {
  padding: 0 20px 24px;
  max-width: 2000px;
  margin: 0 auto;
}
.xle-intro.hero {
  padding-block: 12px !important;
}
.xle-intro .hero-title {
  font-size: 24px !important;
  margin: 0;
}
.xle-intro .hero-description {
  font-size: 13px !important;
  margin-top: 3px;
}
.xle-app {
  border: 1px solid var(--xle-line);
  border-radius: 16px;
  background: var(--xle-bg);
  overflow: clip;
  min-width: 0;
  box-shadow: 0 8px 32px #16203906;
}
.xle-workspace [hidden] {
  display: none !important;
}
.xle-app * {
  box-sizing: border-box;
}
.xle-app button,
.xle-app input,
.xle-app select,
.xle-app textarea {
  font: inherit;
  line-height: 1.3;
  color: var(--xle-text);
}
.xle-app button,
.xle-app select {
  cursor: pointer;
}
.xle-app button:disabled {
  opacity: 0.35;
  cursor: default;
}
.xle-app :is(button, input, select, textarea):focus-visible {
  outline: 2px solid var(--xle-green);
  outline-offset: 2px;
}
.xle-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--xle-line);
}
.xle-document-name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.xle-document-name > svg {
  width: 26px;
  height: 26px;
  color: var(--xle-green);
  flex-shrink: 0;
}
.xle-document-name input {
  width: min(330px, 100%);
  min-width: 70px;
  border: 1px solid transparent;
  background: transparent;
  padding: 7px;
  border-radius: 6px;
  font-weight: 650;
}
.xle-document-name input:hover {
  border-color: var(--xle-line);
}
.xle-local {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--xle-muted);
  white-space: nowrap;
}
.xle-local svg {
  width: 15px;
}
.xle-quick {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.xle-button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 36px;
  min-height: 36px;
  padding: 7px;
  background: transparent;
  color: var(--xle-text);
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}
.xle-button svg {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.xle-button:hover:not(:disabled) {
  background: var(--xle-soft);
  border-color: var(--xle-line);
}
.xle-button.is-active {
  background: var(--xle-soft);
  border-color: var(--xle-green);
  color: var(--xle-green);
}
.xle-labeled {
  padding-inline: 10px;
  font-size: 12px !important;
}
.xle-button.xle-primary {
  background: var(--xle-green);
  color: #fff;
  border-color: var(--xle-green);
  padding-inline: 15px;
  font-weight: 600;
}
.xle-button.xle-primary:hover {
  background: var(--xle-green);
  filter: brightness(0.96);
}
html[data-theme="dark"] .xle-primary {
  color: #071f13;
}
.xle-export {
  position: relative;
}
.xle-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 8px);
  min-width: 240px;
  background: var(--xle-bg);
  border: 1px solid var(--xle-line);
  border-radius: 12px;
  padding: 7px;
  z-index: 80;
  box-shadow: 0 10px 40px #0003;
}
.xle-menu button {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 12px;
  text-align: start;
}
.xle-tabs-row {
  display: flex;
  border-bottom: 1px solid var(--xle-line);
  padding-inline: 12px;
  align-items: center;
  min-width: 0;
}
.xle-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  flex: 1;
  white-space: nowrap;
}
.xle-tabs button {
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 11px 12px 9px;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--xle-text);
  min-height: 42px;
}
.xle-tabs button[aria-selected="true"] {
  color: var(--xle-green);
  border-bottom-color: var(--xle-green);
}
.xle-tabs button:first-child {
  color: var(--xle-green);
}
.xle-ribbon {
  background: var(--xle-bg);
  border-bottom: 1px solid var(--xle-line);
}
.xle-pane {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 109px;
  padding: 10px 6px 5px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.xle-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-inline-end: 1px solid var(--xle-line);
  padding: 0 10px;
  flex: 0 0 auto;
  max-width: 420px;
}
.xle-group:last-child {
  border: 0;
}
.xle-group-controls {
  display: flex;
  align-items: center;
  align-content: flex-start;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 330px;
}
.xle-group-title {
  font-size: 10px;
  text-align: center;
  color: var(--xle-muted);
  margin-top: 6px;
}
.xle-button-row {
  display: flex;
  gap: 3px;
  align-items: center;
}
.xle-select-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10px;
  color: var(--xle-muted);
}
.xle-select-label select {
  border: 1px solid var(--xle-line);
  border-radius: 6px;
  background: var(--xle-bg);
  padding: 6px;
  font-size: 12px;
  max-width: 155px;
  min-height: 32px;
}
.xle-color {
  position: relative;
  width: 32px;
  height: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  cursor: pointer;
}
.xle-color input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.xle-color:after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 19px;
  height: 4px;
  background: var(--xle-green);
  border-radius: 2px;
  pointer-events: none;
}
.xle-file-note {
  font-size: 12px;
  color: var(--xle-muted);
  max-width: 450px;
  min-width: 240px;
  padding: 0 14px;
  margin: 0;
  line-height: 1.6;
}
.xle-draft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 12px;
  background: var(--xle-soft);
  font-size: 11px;
  border-bottom: 1px solid var(--xle-line);
  color: var(--xle-muted);
}
.xle-draft > div {
  display: flex;
  flex-shrink: 0;
}
.xle-draft .xle-button {
  min-height: 30px;
  font-size: 11px !important;
  padding: 4px;
}
.xle-notice {
  padding: 10px 16px;
  font-size: 13px;
  background: var(--xle-soft);
  border-bottom: 1px solid var(--xle-line);
}
.xle-notice.is-error {
  background: #fff1f1;
  color: #a31529;
}
.xle-formula {
  display: flex;
  gap: 6px;
  padding: 7px 10px;
  align-items: center;
  background: var(--xle-bg);
  border-bottom: 1px solid var(--xle-line);
}
.xle-formula input {
  background: var(--xle-bg);
  border: 1px solid var(--xle-line);
  border-radius: 5px;
  min-width: 0;
  min-height: 34px;
  padding: 6px 9px;
  font-size: 13px;
}
.xle-formula #xlse-cell-ref {
  width: 110px;
  flex-shrink: 0;
  font-size: 12px;
}
.xle-formula #xlse-formula-input {
  flex: 1;
}
.xle-fx {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--xle-muted);
  font-size: 19px;
  padding: 0 4px;
}
.xle-formula .xle-button {
  min-width: 30px;
}
.xle-mobile-tools {
  display: none;
}
.xle-grid-area {
  display: flex;
  min-width: 0;
  position: relative;
  background: var(--xle-bg);
}
#xlse-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: clamp(340px, calc(100dvh - 360px), 720px);
  overflow: auto;
  position: relative;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 0;
  outline-offset: -3px;
  touch-action: pan-x pan-y;
  scrollbar-width: thin;
  background: #fff;
  color: #172033;
}
#xlse-table-wrap .xlse-grid {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  min-width: 0;
  background: white;
  color: #172033;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  user-select: none;
}
#xlse-table-wrap .xlse-grid td {
  height: 30px;
  max-height: 30px;
  min-width: 0;
  border: 0;
  border-inline-end: 1px solid #e1e6eb;
  border-bottom: 1px solid #e1e6eb;
  padding: 4px 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  position: relative;
  background: #fff;
  color: #172033;
  vertical-align: bottom;
}
#xlse-table-wrap .xlse-grid th {
  height: 30px;
  max-height: 30px;
  padding: 4px 6px;
  background: #f3f6f5;
  color: #587267;
  border: 0;
  border-inline-end: 1px solid #dce5df;
  border-bottom: 1px solid #dce5df;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  cursor: default;
}
#xlse-table-wrap .xlse-grid thead th {
  position: sticky;
  top: 0;
  z-index: 5;
}
.xlse-grid .xlse-row-header {
  position: sticky !important;
  inset-inline-start: 0;
  z-index: 4;
}
.xlse-grid .xlse-corner {
  inset-inline-start: 0;
  z-index: 7 !important;
}
#xlse-table-wrap .xlse-grid td.xlse-selected {
  background-image: linear-gradient(#107c4112, #107c4112) !important;
  background-color: unset;
  box-shadow: none;
}
#xlse-table-wrap .xlse-grid td.xlse-active {
  outline: 2px solid #107c41;
  outline-offset: -2px;
  z-index: 2;
}
#xlse-table-wrap .xlse-grid td[contenteditable="true"] {
  background: #fff !important;
  outline: 2px solid #107c41;
  user-select: text;
  white-space: pre-wrap !important;
  z-index: 8;
  color: #172033;
}
#xlse-table-wrap .xlse-grid td.xle-error {
  color: #bb283a !important;
}
#xlse-table-wrap .xlse-grid td.xle-link {
  text-decoration: underline;
}
#xlse-table-wrap .xlse-grid.xle-no-grid td {
  border-color: transparent;
}
#xlse-table-wrap .xle-spacer td {
  padding: 0 !important;
  border: 0 !important;
  max-height: none;
  min-height: 0;
  background: #fff !important;
}
.xlse-fill-handle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #107c41;
  border: 1px solid #fff;
  z-index: 9;
  cursor: crosshair;
}
.xlse-col-resize {
  position: absolute;
  inset-inline-end: -3px;
  top: 0;
  width: 7px;
  height: 100%;
  cursor: col-resize;
  touch-action: none;
  z-index: 9;
}
.xlse-row-resize {
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 7px;
  width: 100%;
  cursor: row-resize;
  touch-action: none;
  z-index: 9;
}
.xlse-has-note:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 6px solid #ae69d3;
  border-left: 6px solid transparent;
}
#xlse-table-wrap .xlse-row-header,
#xlse-table-wrap .xlse-corner {
  left: auto;
  inset-inline-start: 0;
}
#xlse-table-wrap .xlse-col-resize {
  right: auto;
  inset-inline-end: -3px;
}
.xlse-filter-btn {
  float: inline-end;
  border: 0;
  border-radius: 3px;
  padding: 0 3px;
  background: #ffffffdd;
  color: #174832 !important;
  cursor: pointer;
  line-height: 18px;
  font-size: 13px;
}
.xlse-filter-btn.active {
  background: #d9f3e4;
}
.xlse-has-dv:before {
  content: "▾";
  position: absolute;
  right: 4px;
  bottom: 4px;
  color: #107c41;
  font-size: 12px;
}
.xlse-has-dv {
  padding-right: 20px !important;
}
.xle-bottom {
  border-top: 1px solid var(--xle-line);
}
.xle-sheetbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--xle-bg);
  min-width: 0;
}
.xle-sheetbar .office-sheet-tabs {
  display: flex;
  flex: 1;
  overflow: auto;
  gap: 3px;
  margin: 0;
  scrollbar-width: thin;
  min-width: 0;
}
.xle-sheetbar .office-sheet-tab {
  padding: 9px 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--xle-muted);
  border-radius: 3px;
  white-space: nowrap;
  font-size: 12px;
  min-height: 38px;
}
.xle-sheetbar .office-sheet-tab.active {
  border-color: var(--xle-green);
  color: var(--xle-green);
  background: var(--xle-soft);
  font-weight: 650;
}
.xle-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 13px;
  border-top: 1px solid var(--xle-line);
  font-size: 11px;
  color: var(--xle-muted);
  min-height: 33px;
}
.xle-status > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xle-status label {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.xle-status select {
  background: var(--xle-bg);
  border: 1px solid var(--xle-line);
  border-radius: 4px;
  font-size: 11px;
  padding: 3px;
}
#xlse-notes {
  width: 270px;
  max-width: 40%;
  padding: 14px;
  background: var(--xle-bg);
  border-inline-start: 1px solid var(--xle-line);
  max-height: 600px;
  overflow: auto;
}
#xlse-notes p {
  font-size: 13px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
#xlse-notes button {
  color: var(--xle-green);
  border: 0;
  background: transparent;
  cursor: pointer;
}
.xle-workspace .xlse-find-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px;
  background: var(--xle-soft);
  border-bottom: 1px solid var(--xle-line);
}
.xle-workspace .xlse-find-panel input {
  min-width: 100px;
  max-width: 220px;
  flex: 1;
  background: var(--xle-bg);
  border: 1px solid var(--xle-line);
  border-radius: 5px;
  padding: 8px;
  font-size: 12px;
}
.xle-workspace .xlse-find-panel span {
  font-size: 11px;
}
.xlse-modal-overlay {
  position: fixed;
  inset: 0;
  background: #06140f77;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 18px;
}
.xlse-modal {
  background: var(--panel, #fff) !important;
  color: var(--text, #172033) !important;
  border: 1px solid var(--line, #ddd) !important;
  border-radius: 16px;
  padding: 24px;
  width: 440px;
  max-width: 100%;
  max-height: 85dvh;
  overflow: auto;
  box-shadow: 0 20px 80px #0004;
}
.xlse-modal h4 {
  font-size: 19px;
  margin: 0 0 18px;
}
.xlse-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.xlse-form label {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
}
.xlse-form input:not([type="checkbox"]):not([type="color"]),
.xlse-form select,
.xlse-form textarea {
  font: inherit;
  min-height: 40px;
  border: 1px solid var(--line, #ddd);
  border-radius: 7px;
  padding: 9px;
  width: 100%;
  color: var(--text, #172033) !important;
  background: var(--panel, #fff) !important;
}
.xlse-form textarea {
  min-height: 110px;
  resize: vertical;
}
.xlse-form p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted, #64748b);
}
.xlse-modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 22px;
}
.xlse-modal-foot button {
  min-height: 40px;
}
.xlse-form [hidden] {
  display: none !important;
}
.xlse-context-menu,
.xlse-dv-menu,
.xlse-filter-menu {
  position: fixed;
  z-index: 10001;
  background: var(--panel, #fff) !important;
  color: var(--text, #172033) !important;
  border: 1px solid var(--line, #ddd) !important;
  border-radius: 10px;
  box-shadow: 0 8px 40px #0003;
  min-width: 160px;
  max-width: calc(100vw - 24px);
  max-height: 60vh;
  overflow: auto;
  padding: 6px;
}
.xlse-context-menu[hidden] {
  display: none !important;
}
.xlse-dv-option,
.xlse-ctx-item {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text, #172033) !important;
  text-align: start;
  padding: 10px;
  font: inherit;
  font-size: 13px;
}
.xlse-filter-list {
  max-height: 220px;
  overflow: auto;
  padding: 8px;
}
.xlse-filter-opt {
  display: flex;
  gap: 8px;
  font-size: 13px;
  padding: 5px;
}
.xlse-filter-opt input {
  accent-color: #107c41;
}
.xlse-filter-foot,
.xlse-filter-sort {
  display: flex;
  gap: 6px;
  padding: 5px;
}
.xlse-ctx-sep {
  height: 1px;
  background: var(--line, #ddd);
  margin: 4px;
}
.xle-workspace .xlse-charts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
  margin: 0;
  background: var(--xle-soft);
}
.xle-workspace .xlse-chart-card {
  width: 480px;
  max-width: 100%;
  background: #fff !important;
  color: #172033 !important;
  border: 1px solid #dde4e0;
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
}
.xlse-chart-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}
.xlse-chart-bar span {
  margin-inline-end: auto;
  font-size: 13px;
  font-weight: 600;
}
.xlse-chart-bar button {
  color: #172033 !important;
}
.xlse-chart-canvas {
  width: 100% !important;
  height: 270px !important;
}
.xle-busy {
  position: absolute;
  inset: 0;
  z-index: 200;
  background: color-mix(in srgb, var(--xle-bg) 92%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 300px;
  border-radius: 16px;
}
.xle-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--xle-line);
  border-top-color: var(--xle-green);
  border-radius: 50%;
  animation: xle-spin 1s linear infinite;
}
@keyframes xle-spin {
  to {
    transform: rotate(360deg);
  }
}
.xle-workspace:fullscreen {
  padding: 10px;
  background: var(--xle-bg);
  overflow: auto;
}
.xle-workspace:fullscreen #xlse-table-wrap {
  height: calc(100dvh - 290px);
}
@media (max-width: 1100px) {
  .xle-local {
    display: none;
  }
  .xle-section {
    padding-inline: 12px;
  }
  .xle-pane {
    min-height: 105px;
  }
  .xle-group {
    padding-inline: 8px;
  }
}
@media (max-width: 640px) {
  .xle-section {
    padding-inline: 5px;
    padding-bottom: 14px;
  }
  .xle-intro .hero-title {
    font-size: 20px !important;
  }
  .xle-app {
    border-radius: 11px;
  }
  .xle-titlebar {
    padding: 8px;
    gap: 5px;
    flex-wrap: wrap;
  }
  .xle-document-name {
    flex-basis: 100%;
    gap: 5px;
  }
  .xle-document-name input {
    width: 100%;
    font-size: 14px;
  }
  .xle-document-name > svg {
    width: 22px;
  }
  .xle-quick {
    width: 100%;
    justify-content: flex-end;
  }
  .xle-quick > .xle-button:first-child {
    margin-inline-end: auto;
  }
  .xle-quick .xle-button {
    min-height: 38px;
  }
  .xle-tabs-row {
    padding-inline: 4px;
  }
  .xle-tabs {
    gap: 0;
  }
  .xle-tabs button {
    padding: 10px 12px;
    font-size: 12px;
    min-height: 43px;
  }
  .xle-pane {
    flex-wrap: wrap;
    overflow: auto;
    max-height: 220px;
    gap: 8px;
    padding: 10px 4px;
  }
  .xle-group {
    max-width: 100%;
    border: 0;
    padding-bottom: 6px;
  }
  .xle-group-controls {
    max-width: 100%;
  }
  .xle-group-title {
    text-align: start;
  }
  .xle-button {
    min-width: 38px;
    min-height: 38px;
  }
  .xle-draft {
    padding: 4px 8px;
    font-size: 10px;
    align-items: center;
  }
  .xle-draft .xle-labeled span {
    display: none;
  }
  .xle-draft .xle-button {
    min-width: 32px;
  }
  .xle-formula {
    padding: 6px;
    gap: 4px;
  }
  .xle-formula #xlse-cell-ref {
    width: 83px;
  }
  .xle-formula .xle-fx {
    display: none;
  }
  .xle-formula input {
    font-size: 16px;
    min-height: 38px;
  }
  .xle-formula .xle-button {
    min-width: 30px;
    padding: 4px;
  }
  .xle-mobile-tools {
    display: flex;
    gap: 3px;
    padding: 3px 6px;
    border-bottom: 1px solid var(--xle-line);
    overflow: auto;
  }
  .xle-mobile-tools .xle-button {
    font-size: 11px !important;
    padding-inline: 6px;
    min-height: 36px;
  }
  #xlse-table-wrap {
    height: clamp(310px, calc(100dvh - 330px), 650px);
  }
  .xle-sheetbar {
    padding-inline: 4px;
  }
  .xle-sheetbar .office-sheet-tab {
    padding: 8px 12px;
    min-height: 40px;
  }
  .xle-status {
    padding-inline: 8px;
    font-size: 10px;
  }
  .xle-status label {
    font-size: 0;
  }
  .xle-status select {
    font-size: 11px;
  }
  .xle-menu {
    min-width: 230px;
  }
  .xle-file-note {
    max-width: 100%;
    min-width: 0;
  }
  .xle-select-label select {
    font-size: 16px;
  }
  .xlse-modal {
    padding: 18px;
  }
  .xlse-form input,
  .xlse-form textarea,
  .xlse-form select {
    font-size: 16px !important;
  }
  #xlse-notes {
    position: absolute;
    inset-inline-end: 0;
    inset-block: 0;
    z-index: 20;
    max-width: 85%;
    width: 280px;
    box-shadow: 0 4px 18px #0003;
  }
  .xlse-fill-handle {
    display: none !important;
  }
  .xle-workspace .xlse-charts {
    padding: 8px;
  }
  .xle-button.xle-primary {
    padding-inline: 12px;
  }
}
@media print {
  body.xle-printing > * {
    display: none !important;
  }
  body.xle-printing > #xle-print-root {
    display: block !important;
    color: #000;
    background: #fff;
  }
  #xle-print-root table {
    border-collapse: collapse;
    width: 100%;
    font:
      11px Arial,
      sans-serif;
  }
  #xle-print-root td,
  #xle-print-root th {
    border: 1px solid #bbb;
    padding: 5px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }
  #xle-print-root h1 {
    font-size: 18px;
  }
  #xle-print-root tr {
    break-inside: avoid;
  }
  #xle-print-root thead {
    display: table-header-group;
  }
}
#xle-print-root {
  display: none;
}
