/* ./styles/base.css */
:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #101113;
  color: #f1eee8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
}

.desktop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #101113;
}

.window {
  position: absolute;
  min-width: 160px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #333741;
  border-radius: 8px;
  background: #15171b;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.4);
}

.window.focused {
  border-color: #333741;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.4);
}

.window.minimized {
  display: none;
}

.window.expanded {
  border-radius: 0;
}

.titlebar {
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-bottom: 1px solid #333741;
  background: #20232a;
  cursor: grab;
  user-select: none;
}

.titlebar:active {
  cursor: grabbing;
}

.title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button {
  position: relative;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.46);
  border-radius: 50%;
  color: #111111;
  font: 0/0 a;
  cursor: pointer;
}

.button::before,
.button::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: #111111;
  content: "";
  opacity: 0;
}

.close {
  background: #555566;
}

.minimize {
  background: #555566;
}

.maximize {
  background: #555566;
}

.window.focused .close,
.close:hover,
.close:focus-visible {
  background: #c95f5a;
}

.window.focused .minimize,
.minimize:hover,
.minimize:focus-visible {
  background: #d3a852;
}

.window.focused .maximize,
.maximize:hover,
.maximize:focus-visible {
  background: #789b6d;
}

.button span {
  display: none;
}

.button:hover::before,
.button:hover::after,
.button:focus-visible::before,
.button:focus-visible::after {
  opacity: 1;
}

.maximize::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.minimize::after {
  content: none;
}

.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.content {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 22px 26px;
  line-height: 1.55;
}

.content h1,
.content h2,
.content h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}

.content p {
  margin: 0 0 14px;
  max-width: 72ch;
}

.content pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.resize-handle {
  position: absolute;
  z-index: 2;
}

.resize-t,
.resize-b {
  left: 10px;
  right: 10px;
  height: 5px;
}

.resize-l,
.resize-r {
  top: 10px;
  bottom: 10px;
  width: 5px;
}

.resize-t {
  top: 0;
  cursor: ns-resize;
}

.resize-b {
  bottom: 0;
  cursor: ns-resize;
}

.resize-l {
  left: 0;
  cursor: ew-resize;
}

.resize-r {
  right: 0;
  cursor: ew-resize;
}

.resize-tl,
.resize-tr,
.resize-bl,
.resize-br {
  width: 10px;
  height: 10px;
}

.resize-tl {
  left: 0;
  top: 0;
  cursor: nwse-resize;
}

.resize-tr {
  right: 0;
  top: 0;
  cursor: nesw-resize;
}

.resize-bl {
  left: 0;
  bottom: 0;
  cursor: nesw-resize;
}

.resize-br {
  right: 0;
  bottom: 0;
  cursor: nwse-resize;
}

.snap-preview {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border: 2px solid rgba(211, 168, 82, 0.62);
  border-radius: 8px;
  background: rgba(211, 168, 82, 0.1);
}


/* ./styles/terminal.css */
.terminal {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: auto;
  padding: 14px 16px;
  background: #101113;
  color: #e4e0d7;
  font: 13px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.terminal-scrollback {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terminal-line {
  min-height: 18.85px;
  line-height: inherit;
  overflow-wrap: anywhere;
}

.terminal-suggestions {
  z-index: 3;
  display: none;
  flex-wrap: wrap;
  gap: 6px 12px;
  max-height: 72px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #7f95b8;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.terminal-suggestions.visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.terminal-prompt-row {
  display: flex;
  align-items: baseline;
  min-height: 18.85px;
  line-height: inherit;
}

.terminal-prompt {
  flex: 0 0 auto;
}

.terminal-input-wrap {
  position: relative;
  min-width: 1ch;
  flex: 1;
  line-height: inherit;
}

.terminal-input-mirror {
  display: inline;
  white-space: pre;
}

.terminal input {
  position: absolute;
  inset: 0;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: none;
  color: transparent;
  background: transparent;
  caret-color: #f1eee8;
  font: inherit;
  line-height: inherit;
}


/* ./styles/file-manager.css */
.file-manager {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  background: #15171b;
  color: #e4e0d7;
  font: 13px/1.35 Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.file-toolbar {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-bottom: 1px solid #333741;
  background: #181b21;
}

.file-toolbar-button {
  height: 28px;
  padding: 0 10px;
  border: 1px solid #333741;
  border-radius: 6px;
  background: #20232a;
  color: #f1eee8;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.file-toolbar-button:disabled {
  color: #6a7080;
  cursor: default;
  opacity: 0.72;
}

.file-toolbar-button:not(:disabled):hover,
.file-toolbar-button:not(:disabled):focus-visible {
  border-color: #4b5260;
  background: #272b33;
  outline: none;
}

.file-path {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  padding: 0 8px;
  color: #9aa6bd;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-list {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 6px 0;
}

.file-row {
  width: 100%;
  height: 34px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) max-content;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  color: #d8d4cc;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: default;
}

.file-row:hover,
.file-row:focus-visible {
  background: #20232a;
  outline: none;
}

.file-row.selected {
  background: rgba(211, 168, 82, 0.18);
}

.file-entry-icon {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: center;
}

.file-entry-icon.folder {
  border-radius: 4px;
  background: #d3a852;
}

.file-entry-icon.folder::before {
  position: absolute;
  left: 1px;
  top: -3px;
  width: 8px;
  height: 5px;
  border-radius: 3px 3px 0 0;
  background: #d3a852;
  content: "";
}

.file-entry-icon.file {
  border: 2px solid #7f95b8;
  border-radius: 4px;
}

.file-entry-icon.file::before,
.file-entry-icon.file::after {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  border-radius: 2px;
  background: #7f95b8;
  content: "";
}

.file-entry-icon.file::before {
  top: 5px;
}

.file-entry-icon.file::after {
  top: 10px;
}

.file-entry-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-entry-meta {
  color: #7a8292;
  font-size: 11px;
}

.file-message {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-bottom: 1px solid #333741;
  font-size: 12px;
}

.file-message.error {
  color: #ef9c9c;
  background: rgba(201, 95, 90, 0.12);
}

.file-message span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-message-close {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: #d8d4cc;
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.file-message-close:hover,
.file-message-close:focus-visible {
  color: #f1eee8;
  outline: none;
}

.file-empty {
  flex: 1;
  display: grid;
  place-items: center;
  color: #7a8292;
  font-size: 13px;
}

.file-dialog-scrim {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(16, 17, 19, 0.62);
}

.file-dialog {
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid #333741;
  border-radius: 8px;
  background: #20232a;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

.file-dialog-title {
  color: #f1eee8;
  font-size: 14px;
  font-weight: 650;
}

.file-dialog-input {
  height: 32px;
  min-width: 0;
  padding: 0 9px;
  border: 1px solid #4b5260;
  border-radius: 6px;
  outline: none;
  color: #f1eee8;
  background: #15171b;
  font: inherit;
}

.file-dialog-input:focus {
  border-color: #d3a852;
}

.file-dialog-error {
  color: #ef9c9c;
  font-size: 12px;
}

.file-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.file-dialog-button {
  height: 28px;
  padding: 0 10px;
  border: 1px solid #333741;
  border-radius: 6px;
  color: #f1eee8;
  background: #20232a;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.file-dialog-button.primary {
  border-color: #b89143;
  background: #d3a852;
  color: #171a20;
}

.file-dialog-button:hover,
.file-dialog-button:focus-visible {
  filter: brightness(1.08);
  outline: none;
}


/* ./styles/code-editor.css */
.code-editor {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  background: #101113;
  color: #e4e0d7;
  font: 13px/1.35 Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.code-editor-toolbar {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-bottom: 1px solid #333741;
  background: #181b21;
}

.code-editor-button {
  height: 28px;
  flex: 0 0 auto;
  padding: 0 10px;
  border: 1px solid #333741;
  border-radius: 6px;
  background: #20232a;
  color: #f1eee8;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.code-editor-button:disabled {
  color: #6a7080;
  cursor: default;
  opacity: 0.72;
}

.code-editor-button:not(:disabled):hover,
.code-editor-button:not(:disabled):focus-visible {
  border-color: #4b5260;
  background: #272b33;
  outline: none;
}

.code-editor-path {
  min-width: 120px;
  height: 28px;
  flex: 1;
  padding: 0 8px;
  border: 1px solid #333741;
  border-radius: 6px;
  outline: none;
  background: #101113;
  color: #e4e0d7;
  font: 12px/1.35 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
}

.code-editor-path:focus {
  border-color: #d3a852;
}

.code-editor-status {
  min-width: 58px;
  flex: 0 0 auto;
  color: #9aa6bd;
  font-size: 12px;
  text-align: right;
}

.code-editor-status.saved {
  color: #789b6d;
}

.code-editor-body {
  flex: 1;
  min-height: 0;
  display: flex;
}

.code-editor-files {
  width: 190px;
  min-width: 150px;
  display: flex;
  flex: 0 0 190px;
  flex-direction: column;
  border-right: 1px solid #333741;
  background: #15171b;
}

.code-editor-files-header {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-bottom: 1px solid #333741;
}

.code-editor-file-header-button {
  height: 24px;
  padding: 0 8px;
  border: 1px solid #333741;
  border-radius: 6px;
  color: #e4e0d7;
  background: #20232a;
  font: inherit;
  font-size: 12px;
}

.code-editor-file-header-button:disabled {
  color: #6a7080;
}

.code-editor-cwd {
  min-width: 0;
  overflow: hidden;
  color: #9aa6bd;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-editor-file-list {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 6px 0;
}

.code-editor-file-row {
  width: 100%;
  height: 30px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #d8d4cc;
  font: inherit;
  text-align: left;
}

.code-editor-file-row:hover,
.code-editor-file-row:focus-visible {
  background: #20232a;
  outline: none;
}

.code-editor-file-row.active {
  background: rgba(211, 168, 82, 0.16);
}

.code-editor-entry-icon {
  position: relative;
  width: 16px;
  height: 16px;
  justify-self: center;
}

.code-editor-entry-icon.folder {
  border-radius: 4px;
  background: #d3a852;
}

.code-editor-entry-icon.file {
  border: 2px solid #7f95b8;
  border-radius: 4px;
}

.code-editor-entry-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-editor-main {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.code-editor-tabs {
  flex: 0 0 34px;
  display: flex;
  align-items: end;
  gap: 2px;
  padding: 5px 6px 0;
  overflow-x: auto;
  border-bottom: 1px solid #333741;
  background: #15171b;
}

.code-editor-tab {
  max-width: 190px;
  height: 29px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: transparent;
  color: #9aa6bd;
  font: inherit;
  font-size: 12px;
}

.code-editor-tab.active {
  border-color: #333741;
  background: #101113;
  color: #f1eee8;
}

.code-editor-tab-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-editor-tab-close {
  color: #7a8292;
  font-weight: 700;
}

.code-editor-stack {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #101113;
}

.code-editor-highlight,
.code-editor-textarea {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 14px 16px;
  overflow: auto;
  border: 0;
  font: 13px/1.48 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  letter-spacing: 0;
  tab-size: 2;
  white-space: pre;
}

.code-editor-highlight {
  pointer-events: none;
  color: #d8d4cc;
}

.code-editor-textarea {
  z-index: 1;
  resize: none;
  outline: none;
  background: transparent;
  color: transparent;
  caret-color: #f1eee8;
}

.code-editor-textarea::selection {
  background: rgba(127, 149, 184, 0.42);
}

.code-editor-empty,
.code-editor-empty-editor {
  display: grid;
  place-items: center;
  min-height: 0;
  flex: 1;
  color: #7a8292;
}

.code-editor-completions {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 3;
  width: min(280px, calc(100% - 32px));
  max-height: 210px;
  overflow: auto;
  border: 1px solid #333741;
  border-radius: 8px;
  background: #20232a;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

.code-editor-completion {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 10px;
  border: 0;
  color: #f1eee8;
  background: transparent;
  font: inherit;
  text-align: left;
}

.code-editor-completion:hover,
.code-editor-completion:focus-visible {
  background: #272b33;
  outline: none;
}

.code-editor-completion-label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-editor-completion-detail {
  color: #9aa6bd;
  font-size: 11px;
}

.code-editor-terminal-panel {
  flex: 0 0 150px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #333741;
  background: #101113;
}

.code-editor-terminal-header {
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 4px 12px;
  color: #d8d4cc;
  font-size: 12px;
  font-weight: 650;
}

.code-editor-terminal-panel > .terminal {
  flex: 1;
  min-height: 0;
  padding: 8px 12px 12px;
  font-size: 12px;
}

.syntax-comment {
  color: #7a8292;
}

.syntax-string {
  color: #789b6d;
}

.syntax-number {
  color: #c59f6b;
}

.syntax-keyword {
  color: #7f95b8;
  font-weight: 650;
}

.syntax-type,
.syntax-function {
  color: #d3a852;
  font-weight: 650;
}

.syntax-member,
.syntax-annotation {
  color: #b891a8;
}

.syntax-punctuation {
  color: #9aa6bd;
}


/* ./styles/dock.css */
.dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: calc(100vw - 32px);
  min-height: 72px;
  padding: 10px 16px 9px;
  overflow-x: auto;
  transform: translateX(-50%);
  border: 2px solid #333741;
  border-radius: 20px;
  background: #14161a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.dock-item {
  position: relative;
  width: 52px;
  height: 54px;
  display: grid;
  grid-template-rows: 45px 8px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: #f1eee8;
  background: transparent;
  cursor: pointer;
  outline: none;
}

.dock-item:focus-visible {
  box-shadow: 0 0 0 1px rgba(211, 168, 82, 0.72);
}

.dock-item.running::after {
  grid-row: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d3a852;
  content: "";
}

.dock-icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  grid-row: 1;
  place-items: center;
  border-radius: 10px;
  background: #e8e1d4;
  overflow: hidden;
  transition:
    transform 120ms ease,
    filter 120ms ease;
}

.dock-icon::before,
.dock-icon::after {
  position: absolute;
  content: "";
}

.dock-icon-blog {
  background: #d3a852;
}

.dock-icon-notes {
  background: #7f95b8;
}

.dock-icon-terminal {
  background: #789b6d;
}

.dock-icon-files {
  background: #d3a852;
}

.dock-icon-code {
  background: #b891a8;
}

.dock-icon-about::before {
  width: 23px;
  height: 23px;
  border: 3px solid #171a20;
  border-radius: 50%;
}

.dock-icon-about::after {
  width: 3px;
  height: 13px;
  transform: translateY(5px);
  border-radius: 3px;
  background: #171a20;
  box-shadow: 0 -14px 0 #171a20;
}

.dock-icon-terminal::before {
  width: 26px;
  height: 20px;
  border: 3px solid #171a20;
  border-radius: 5px;
}

.dock-icon-terminal::after {
  width: 13px;
  height: 3px;
  transform: translate(-3px, 6px);
  border-radius: 3px;
  background: #171a20;
  box-shadow: 13px 0 0 #171a20;
}

.dock-icon-files::before {
  width: 28px;
  height: 24px;
  transform: translateY(2px);
  border-radius: 5px;
  background: #171a20;
}

.dock-icon-files::after {
  width: 15px;
  height: 6px;
  transform: translate(-5px, -12px);
  border-radius: 5px 5px 0 0;
  background: #171a20;
}

.dock-icon-code::before {
  width: 28px;
  height: 24px;
  border: 3px solid #171a20;
  border-radius: 6px;
}

.dock-icon-code::after {
  width: 14px;
  height: 3px;
  transform: translateY(4px);
  border-radius: 3px;
  background: #171a20;
  box-shadow:
    -5px -7px 0 #171a20,
    7px -7px 0 #171a20;
}

.dock-icon-blog::before {
  width: 26px;
  height: 31px;
  border-radius: 6px;
  background: #171a20;
}

.dock-icon-blog::after {
  width: 17px;
  height: 3px;
  transform: translateY(-5px);
  border-radius: 3px;
  background: #d3a852;
  box-shadow:
    0 8px 0 #d3a852,
    0 16px 0 #d3a852;
}

.dock-icon-notes::before {
  width: 26px;
  height: 31px;
  border-radius: 8px;
  background: #171a20;
}

.dock-icon-notes::after {
  width: 17px;
  height: 3px;
  transform: translateY(-5px);
  border-radius: 3px;
  background: #7f95b8;
  box-shadow:
    0 8px 0 #7f95b8,
    0 16px 0 #7f95b8;
}

.dock-icon-app::before {
  inset: 14px;
  border-radius: 7px;
  background: #171a20;
}

.dock-item:hover .dock-icon,
.dock-item:focus-visible .dock-icon {
  filter: brightness(1.06);
}


/* ./styles/tooltip.css */
.web-tooltip {
  position: fixed;
  z-index: 10001;
  max-width: min(220px, calc(100vw - 16px));
  padding: 9px 12px;
  color: #f1eee8;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.web-tooltip.arrow-down {
  padding-bottom: 15px;
}

.web-tooltip.arrow-up {
  padding-top: 15px;
}

.web-tooltip.arrow-left {
  padding-left: 18px;
}

.web-tooltip.arrow-right {
  padding-right: 18px;
}

.web-tooltip.visible {
  opacity: 1;
}

.web-tooltip-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.38));
}

.web-tooltip-shape-path {
  fill: #20232a;
  stroke: #333741;
  stroke-linejoin: round;
  stroke-width: 1;
}

.web-tooltip-label {
  position: relative;
  z-index: 2;
}