:root {
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overscroll-behavior: none;
  touch-action: pan-x pan-y;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  touch-action: pan-x pan-y;
  width: 100%;
  height: 100%;
  background-color: black;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

#root {
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
  /* outline: 1px solid rgb(255, 0, 0, 0.2); */
}

table {
  border-collapse: collapse;
}

tr,
td,
th {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: normal;
}

th {
  text-align: left;
}

td {
  text-align: right;
}

/* По умолчанию скрываем */
.drag-region-container {
  display: none;
}

/* Показываем только в Electron */
.is-electron .drag-region-container {
  display: flex;
  /* Перезаписываем none на flex */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  justify-content: center;
  z-index: 9999;
  height: calc(env(titlebar-area-height) - 8px);
  pointer-events: none;
  padding-top: 4px;
  padding-bottom: 4px;
}

.drag-handle {
  width: 180px;
  height: 22px;
  background: rgba(40, 40, 40, 0.2);
  backdrop-filter: blur(32px);
  border-radius: 0.25rem;
  -webkit-app-region: drag;
  pointer-events: auto;
  /* Можно добавить легкую полоску для вида */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
}

/* * {
  outline: 1px solid red;
} */._wrapper_10trr_1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

._canvas_10trr_7 {
  width: 100%;
  height: 100%;
  touch-action: none;
  display: block;
}._sidebar_eslmi_1 {
  position: fixed;
  top: 16px;
  right: 16px;
  width: min-content;
  /* width: 600px; */
  max-height: calc(100% - 16px * 2);
  border-radius: 16px;
  /* box-shadow: 0 0 32px rgba(20, 20, 20, 1);
  backdrop-filter: blur(32px);
  background-color: rgba(0, 0, 0, 0.5); */
  color: white;
  /* padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px; */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
._input_ll6q7_1 {
  --track-height: 4px;
  --thumb-width: 4px;
  --thumb-height: 12px;
  --main-color: white;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  height: var(--thumb-height);
}

._input_ll6q7_1::-webkit-slider-runnable-track {
  height: var(--track-height);
  background-color: var(--main-color);
}

._input_ll6q7_1::-moz-range-track {
  height: var(--track-height);
  background-color: var(--main-color);
}

._input_ll6q7_1::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: var(--thumb-width);
  height: var(--thumb-height);
  background-color: var(--main-color);
  transform: translateY(calc((var(--track-height) - var(--thumb-height)) / 2));
}

._input_ll6q7_1::-moz-range-thumb {
  appearance: none;
  width: var(--thumb-width);
  height: var(--thumb-height);
  border: none;
  border-radius: 0;
  background-color: var(--main-color);
}

._captionAndValue_ll6q7_45 {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

._value_ll6q7_51 {
  text-align: right;
}