.dashboard-wrapper, .dashboard-app { height: 100%; }
.yrwm-grid {
  display: grid;
  grid-template-rows: auto min-content;
  height: 100svh;
}
.yrwm-container2 { overflow: auto; }
.yrwm-tabs {
  display: grid;
  grid-template-columns: auto min-content;
  background: black;
  white-space: nowrap;
}
.yrwm-chatbot-trigger button {
  font-size: 25px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: -1px 1px 4px black !important;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 2.5s infinite;
  z-index: 1000;
  border: 0;
}
.yrwm-chatbot-trigger button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  animation: none; /* Pause pulse on hover */
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}
.yrwm-chatbot-modal .modal {
  backdrop-filter: none;
  z-index: 1001;
  width: min-content;
  height: min-content;
  right: 0;
  bottom: 90px;
  left: unset;
  top: unset;
}
.yrwm-chatbot-modal .chat-container {
  border-radius: 20px;
  box-shadow: -1px 1px 4px black;
  height: calc(88svh - 60px);
  width: 400px;
  max-width: calc(100vw - 40px);
  margin: 30px 20px;
}
:root {
  --grafou-bg1: #D0E3F2;
  --grafou-bg2: #9BBBE2;
  --grafou-bg3: #A3C3EA;
  --grafou-bg4: #85AFD9;
  --grafou-bg5: #bfbfe7;
}
.fit { display: inline-block; }
.grid { display: grid; }
.flex { display: flex; }
.pool { display: grid; }
.insert { outline: 0; }
.dropdown {
  cursor: pointer;
  outline: 0;
}
.handle {
  cursor: pointer;
  outline: 0;
}
.full-height { height: 100%; }
* { box-sizing: border-box; }
body {
  margin: 0;
  overscroll-behavior-x: none;
}
.grafou-kanban-modal .modal {
  z-index: 99999;
}
.drag-clone {
  z-index: 99999999 !important;
 /* position: absolute !important;*/
}
.grafou-dashboard-handles .active-dashboard-handle {
  background: gray;
}
.grafou-sidebar-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}
.grafou-sidebar-header .modal {
  z-index: 9999999;
}
.grafou-app .wrappers-tree {
  overflow: hidden;
}
.grafou-app .tree-container {
  overflow: auto;
  max-width: 100vw;
}
.grafou-wrappers-c {
  display: grid;
  grid-template-rows: min-content auto;
}
.grafou-wrappers-body {
  overflow: auto;
}
.grafou-advanced-side-toggler {
  border: 1px solid #808080;
  border-right: 0;
  border-left: 0;
}
.grafou-insert-direction {
  display: grid;
  grid-template-columns: min-content repeat(3, 1fr);
  margin-bottom: 2px;
}
.grafou-app {
  display: grid;
  grid-template-rows: auto min-content;
  height: 97svh;
}
.grafou-app .triggers-zoom {
  border: 1px solid gray;
  background: white;
}
.grafou-app .triggers-zoom button {
  border: 0;
  background: white;
}
.grafou-app .triggers-zoom input {
  background: white;
  height: 13px;
}
.grafou-grid {
  display: grid;
  grid-template-columns: min-content auto;
  overflow: auto;
  grid-template-areas: 'a b';
}
.grafou-body {
  background: var(--grafou-bg3);
  overflow: auto;
  grid-area: b;
  height: 100%;
}
.grafou-body-views { height: 100%; }
.grafou-sidebar {
  display: grid;
  background: var(--grafou-bg2);
  overflow: auto;
  width: 177px;
  border-right: 1px solid gray;
  grid-area: a;
  grid-template-rows: min-content auto;
  height: 97svh;
}
.grafou-sidebar-header {
  background: #8bb1e1;
  border-bottom: 1px solid gray;
  text-align: center;
  box-shadow: 0px -1px 6px black;
}
.grafou-sidebar-header button {
  background: white;
  border: 1px solid gray;
  color: black;
}
.grafou-sidebar-header button:hover {
  background: gray;
}
.grafou-wrappers-container button {
  display: block;
  width: 100%;
  text-align: start;
  border: 0;
  background: transparent;
}
.grafou-wrappers-container button:hover {
  background: var(--grafou-bg5);
}
.grafou-footer {
  background: var(--grafou-bg4);
  border-top: 1px solid gray;
  display: grid;
  grid-template-columns: min-content auto min-content;
  align-items: center;
  justify-items: center;
  white-space: nowrap;
}
.grafou-wrappers-container {
  border-bottom: 1px solid gray;
}
.grafou-wrappers-container button {
  background: white;
  padding-top: 2px;
  padding-bottom: 2px;
}
.grafou-tip {
  background: black;
  color: white;
  padding: 4px 8px;
  right: 5px;
  margin-top: 10px;
  border: 1px solid white;
}
.grafou-app select, .grafou-app input {
  border: 0;
  border-bottom: 2px solid #a3c9e7;
  background: transparent;
  color: #3c3c3c;
}
.grafou-page-name { color: white !important; }
.n-handle-container {
  border-radius: 10px;
  background: #a3c9e7;
}
.n-handle-container .n-handle:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.n-handle-container .n-handle:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.n-handle {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: .5s;
}
.n-handle:hover, .grafou-active-handle {
  background: #ffac64;
  color: #212121;
}
.n-insert-container {
  border: 1px solid #bfbfbf;
  padding: 1px;
  margin: 2px;
}
.n-insert-label {
  color: gray;
  font-size: 12px;
}
  .grafou-grid {
    grid-template-areas: 'a' 'b';
    grid-template-rows: min-content auto;
  }
  .grafou-sidebar {
    max-height: 180px;
    border-top: 1px solid gray;
    border-right: 0;
    width: 100vw;
  }
  .grafou-app .tree-container {
    display: flex;
    gap: 10px;
  }
  .grafou-app .tree-dir {
    display: flex;
    height: min-content;
  }
  @media only screen and (max-width: 802px) {
      .grafou-grid {
    grid-template-areas: 'b' 'a';
    grid-template-rows: auto min-content;
  }
  }
.modal-aux button {
  position: absolute;
  border-radius: 10px;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 11;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.modal-content {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
}
.tip { position: relative; }
.tip .tip-tip {
  position: absolute;
  display: none;
}
.tip:hover .tip-tip { display: block; }
.grafou-projects-wrapper {
  background: white;
}
.grafou-project-header {
  display: none;
  position: absolute;
  margin-top: -20px;
}
.grafou-project:hover .grafou-project-header {
  display: block;
}
.grafou-projects-header {
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 1px solid gray;
}
.grafou-project {
  text-align: center;
  padding: 10px 20px;
  cursor: pointer;
  background: white;
}
.grafou-project:hover {
  background: lightgray;
  color: black;
}
.grafou-project-todo { background: red; }
.grafou-project-doing { background: yellow; }
.grafou-project-done { background: green; }
.grafou-project-image { width: 40px; }
.grafou-project-name {
  cursor: text;
}
.grafou-project-name:focus {
  backgound: black;
  color: white;
}
.grafou-add-project {
  outline: 0;
  text-align: center;
  padding: 10px 20px;
  cursor: pointer
}
.grafou-add-project:hover {
  background: white;
  color: black;
}
.grafou-projectconfigmodal .modal {
  max-width: 100vw;
  overflow: auto;
}
.grafou-projectconfig-form {
  background: white;
  padding: 10px;
}
.grafou-projectconfig-inputs {
  white-space: nowrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.grafou-wrappers-basic-toggler button {
  text-align: start;
  width: 100%;
  font-size: 12px;
  font-family: sans-serif;
  color: #051e3c;
  background: transparent;
  border: 0;
  padding-top: 3px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.grafou-wrappers-basic-toggler button:hover {
  background: #4e78ad;
  color: white;
}
.grafou-wrappers-basic-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2px;
  padding: 2px;
  padding-top: 0;
  margin-top: 2px;
}
.grafou-new-wrapper {
  display: block;
  width: 100%;
  text-align: start;
  border: 0;
  border-bottom: 1px solid gray;
  background: white;
}
.grafou-new-wrapper:hover {
  background: var(--grafou-bg5);
}
.grafou-wrappers-basic-container button {
  background: #7b98ff;
  border: 1px solid #266983;
  text-align: start;
  color: #e9f5ff;
  padding-top: 5px;
  padding-bottom: 4px;
  display: grid;
  grid-template-columns: min-content auto;
  grid-gap: 6px;
  align-content: center;
}
.grafou-wrappers-basic button {
  user-select: none;
}
.grafou-wrappers-basic-container button:hover {
  background: #435e70;
}
.grafou-new-wrapper span {
  padding-right: 5px;
}
.grafou-wrappers { position: relative; }
.grafou-wrapper-item { padding-left: 22px; }
.grafou-wrapper-rule {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  width: 1px;
  background: gray;
  margin-left: -10px;
}
.togglerarrow-icons { padding-right: 5px; }
.tree-dir button {
  display: block;
  width: 100%;
  text-align: start;
  user-select: none;
}
.tree-file {
  padding-left: 20px;
  user-select: none;
}
.tree { position: relative; }
.search-container { margin-bottom: 10px; }
.tree-rule {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  width: 1px;
  background: gray;
  margin-left: -6px;
}
.tree-dir button:hover, .tree-file:hover { background: #37373d; }
.open-tree { background: #2f2f2f !important; }
.active-tree {
  background: #0d871c !important;
  cursor: default;
}
.cut-tree { color: #686363 !important; }
.active-contextmenu { background: #e71c1c !important; }
.grafou-styles {
  display: grid;
  grid-template-columns: auto min-content;
}
.grafou-styles-header {
  background: #8080802e;
  border-bottom: 1px solid #b9b9b9;
}
.update-grafou-style {
  border: 0;
  padding: 3px 5px;
  background: #7e7e7e;
  color: #a9a5a5;
  cursor: not-allowed;
}
.active-update-grafou-style {
  background: #42990c;
  color: #000000;
  cursor: pointer;
}
.active-update-grafou-style:hover {
  background: #4fb312;
}
.n-insert-color-container {
  position: relative;
  cursor: pointer;
  font-size: 20px;
}
.n-insert-color-container:hover {
  color: red;
}
.n-insert-color {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.n-dropdown-insert {
  position: relative;
}
.n-insert-dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  user-select: none;
}
.n-insert-size-inputs {
  grid-template-columns: min-content min-content;
}
.n-insert-size, .n-dropdown-size {
  width: 45px;
}
.n-insert-select, .n-insert-simple {
  width: 99px;
}
.grafou-classes { position: relative; }
.grafou-classes-select {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  user-select: none;
}
.grafou-img-button {
  padding: 0;
  border: 0;
  background: transparent;
  display: block;
}
.grafou-label-container {
  display: grid;
  grid-template-columns: auto min-content;
  width: calc(100% - 12px);
  margin: 0 0 0 5px;
}
.grafou-img-label {
  border: 0;
  text-align: center;
  display: block;
  padding: 4px 0;
}
.grafou-img-label:hover {
  background: #ffffff87;
}
.grafou-gallery-container {
  background: #00000045;
  border: 1px solid gray;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  display: grid;
  grid-template-rows: auto min-content;
  font-family: sans-serif;
}
.grafou-gallery-inner {
  max-height: 80svh;
  overflow: auto;
}
.grafou-gallery-images-api, .grafou-gallery-images-www {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
}
.grafou-img {
  max-width: 200px;
  padding: 5px;
  cursor: pointer;
  display: block;
}
.grafou-img:hover, .grafou-gallery-container .selected-grafou-img {
  background: red;
}
.grafou-gallery-header {
  position: sticky;
  top: 0;
  background: lightgray;
  box-shadow: -1px 0px 3px black;
  padding: 4px 0;
}
.grafou-gallery-footer {
  background: black;
  padding: 4px 0;
  border-top: 1px solid gray;
  text-align: end;
}
.select-grafou-images {
  font-size: 20px;
  margin-right: 20px;
  background: transparent;
  color: green;
  border: 0;
  padding: 0;
  padding-top: 3px;
}
.select-grafou-images:hover {
  color: #116611;
}
.desktop { width: 1281px !important; }
.tablet { width: 801px !important; }
.phone { width: 481px !important; }
:root {
  touch-action: pan-x pan-y;
  height: 100%;
}
.grafou-views {
  /* height: 10000svh;
  width: 10000vw; */
  display: flex;
  grid-gap: 20px;
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  overflow: auto;
  max-width: 100vw;
}
.grafou-view-container {
  /* position: absolute; */
  user-select: none;
  touch-action: none;
  height: 100%;
  display: grid;
  grid-template-rows: min-content auto;
  width: 100vw;
  position: relative;
}
.grafou-view-handlers {
  background: gray;
  padding: 4px 4px;
  display: flex;
  grid-gap: 5px;
  align-items: center;
  overflow: auto;
}
.active-grafou-view-container .grafou-view-handlers {
  background: #c35050;
}
.grafou-page-url { text-decoration: none; }
.grafou-view-frame {
  background: white;
  display: block;
  border: none;
  margin: 0 auto;
}
.grafou-set-frame-height {
  display: none;
  border-bottom: 14px solid green;
  cursor: row-resize !important;
}
.grafou-view-frame-container {
  background: gray;
}
.grafou-page-url {
  color: #7b98ff;
  font-size: 22px;
}
.grafou-page-url:hover { color: #435e70; }
.grafou-page-name {
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 3px solid #7b98ff;
  padding: 2px 7px 1px 7px;
  font-size: 18px;
  font-weight: bold;
  width: 140px;
  margin: 0 4px 0 2px;
}
.grafou-page-name:hover, .grafou-page-name:focus {
  background: #7b98ff;
  border-bottom: 3px solid #435e70;
}
.grafou-view-handlers button {
  background: transparent;
  border: none;
  color: white;
  padding: 2px 6px;
  height: 100%;
}
.active-grafou-view-handler {
  color: #32d700 !important;
}
.grafou-view-handlers button:hover {
  color: #96c787;
}
.grafou-views-outer {
  /*position: relative;*/
  height: 100%;
}
.grafou-view-disabled-handle, .grafou-view-disabled-handle:hover {
  color: #bba9a9 !important;
  cursor: default;
}
.grafou-view-enabled-handle {
  background: #11d711 !important;
  color: #0a0a0a !important;
}
.grafou-view-enabled-handle:hover {
  background: #0dad0d !important;
}
.fullscreen-grafou-views .grafou-view-container:not(.fullscreen-grafou-view) {
  display: none;
}
.grafou-views .yrkit-preview {
  height: 100%;
}
.grafou-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  display: grid;
  align-content: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 12;
}
.grafou-loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}
.grafou-loader::after,
.grafou-loader::before {
  content: '';
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border: 2px solid #FFF;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  animation: rotation 2s ease-in-out infinite alternate;
}
.grafou-loader::after {
  border-color: #7b98ff;
  background: #7b98ff;
  animation-direction: alternate-reverse;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.grafou-views .words-code {
  grid-template-columns: auto;
}
.grafou-views .line-numbers {
  display: none;
}
.full-width { width: 100% !important; }
.dashboard-wrappers {
  height: 100%;
  display: grid;
  grid-template-rows: auto min-content min-content;
}
.dashboard-wrappers .dashboard-handle {
  background: transparent;
  color: white;
  border: 1px solid gray;
  margin: 0;
}
.dashboard-wrappers .dashboard-handle:hover,
.dashboard-wrappers .active-dashboard-handle { background: #5d5d5d; }
.preview-frame {
  background: white;
  width: 100%;
  height: 100%;
}
.dashboard-wrapper {
  display: grid;
  height: 100%;
}
.dashboard-container {
  overflow: auto;
}
.preview-container {
  overflow: auto;
  max-width: 100vw;
}
.preview-wrapper {
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
  background: white;
  color: black;
}
.rules-grid {
  height: 100%;
  display: grid;
}
.rules-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  z-index: 999999;
}
.rules-grid-item {
  border: 2px solid gray;
  cursor: row-resize;
  position: relative;
  z-index: 1;
  top: 0 !important;
  left: 0 !important;
}
.rules-grid-item:hover {
  border: 6px solid gray;
}
.elements-tab {
  font-family: monospace;
  font-size: 14px;
  white-space: pre;
  line-height: 1.6;
  padding: 10px;
  background: #111;
  color: #eee;
  overflow: auto;
  height: 100%;
}
.node {
  cursor: pointer;
  padding-left: 16px;
}
.collapsed > .el-children {
  display: none;
}
.highlight-locked {
  background: blue;
}
.iframeConsole {
  font-family: monospace;
  font-size: 13px;
  background: #1e1e1e;
  color: #ddd;
  padding: 8px;
  overflow-y: auto;
}
.entry { margin-bottom: 6px; }
.time { color: #777; }
.level-log { color: #ccc; }
.level-warn { color: #e5c07b; }
.string { color: #98c379; }
.number { color: #d19a66; }
.boolean { color: #56b6c2; }
.null, .undefined { color: #c678dd; }
.function {
  color: #61afef;
  cursor: pointer;
}
.dom-node { color: #e5c07b; }
.object-key { color: #abb2bf; }
.level-error, .level-error .object-key { color: #e06c75; }
.collapsible { cursor: pointer; }
.children { margin-left: 15px; }
.stack-line {
  font-family: monospace;
  padding-left: 1em;
  white-space: pre;
}
.stack-line.clickable {
  cursor: pointer;
  color: #4ea1ff;
  text-decoration: underline;
}
.stack-line.clickable:hover {
  color: #1e90ff;
}
.entry > span { margin-left: 7px; }
.entry > span:first-child { margin-left: 0; }
.code-snippet {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 0.5em;
  margin: 0.25em 0;
  border-radius: 4px;
  overflow-x: auto;
  text-decoration: none !important;
}
.words-code {
  display: grid;
  grid-template-columns: min-content auto;
  background-color: #1f1f1f;
  height: 100%;
}
.line-numbers {
  text-align: end;
  overflow: hidden;
  font-family: monospace;
  font-size: 12px;
  padding: 10px;
  color: #617668;
}
.words-code-insert {
  white-space: nowrap;
  resize: none;
  height: 100%;
  margin: 0;
  outline: 0;
  border: 0;
  width: 100%;
  background-color: inherit;
  color: transparent;
  caret-color: gray;
  font-family: monospace;
  font-size: 12px;
  padding: 10px 0 10px 2px;
  border-left: 1px solid #3e3e3e;
}
.highlight-container {
  position: relative;
}
.highlight {
  white-space: pre;
  background-color: inherit;
  color: #9CDCFE;
  width: 100%;
  font-size: 12px;
  font-family: monospace;
  padding: 10px 0 10px 2px;
  border-left: 1px solid #3e3e3e;
  pointer-events: none;
  position: absolute;
  top: 0;
  height: 100%;
  overflow: auto;
}
.highlight-rule {
  margin-left: 3px;
  width: calc(1ch + 1px);
  position: absolute;
  font-family: monospace;
  left: 79ch;
  background: #ffb10038;
  height: 100%;
  top: 0;
  font-size: 12px;
}
@container (max-width: 79ch) {
  .highlight-rule { display: none; }
}
.wc-white-line {
  background: red;
  color: white;
}
.token.operator, .token.entity, .token.url, .language-css .token.string,
.style .token.string { background: transparent !important; }
.yr-comment { color: gray !important; }
.yr-trigger, .yr-section, .yr-macro { color: #e90; }
.yr-html-selector { color: #569CD6; }
.desktop { width: 1281px !important; }
.tablet { width: 801px !important; }
.phone { width: 481px !important; }
.triggers-viewports-tip {
  margin-top: -60px;
  margin-left: 5px;
  right: initial;
  background: black;
  color: white;
  z-index: 9;
  padding: 2px;
  border: 1px solid white;
}
.triggers-viewports {
  display: grid;
  grid-template-columns: repeat(3, min-content);
}
.triggers-viewports button {
  border: 1px solid gray;
  background: white;
}
.active-viewport {
  background: #5c5c5c !important;
  color: white;
}
.triggers-zoom {
  display: grid;
  grid-template-columns: min-content min-content min-content;
  justify-content: center;
}
.zoom-out { cursor: zoom-out; }
.zoom-in { cursor: zoom-in; }
.grafou-actions .tip-tip {
  margin-top: -45px;
  right: 10px;
}
.grafou-actions {
  display: grid;
  grid-template-columns: repeat(3, min-content);
}
.grafou-actions button {
  border: 1px solid gray;
  background: white;
}
.actions-container {
  display: grid;
  grid-template-columns: auto min-content;
}
.actions-modal button {
  background: transparent;
  cursor: pointer;
  border: 0;
}
.actions-container {
  background: white;
  padding: 5px;
}
.action-logs {
  padding: 5px 10px;
  min-width: 350px;
  max-width: 60vw;
  min-height: 100px;
  max-height: 60svh;
  overflow: auto;
  color: white;
  background: #222;
  border: 1px solid gray;
}
.active-action {
  background: yellow !important;
}
.clear-button-disabled {
  color: lightgray !important;
}
@keyframes pulse-circle {
  50% { opacity: 0.5; }
}
.pulse-circle {
  background-color: #60a5fa;
  border-radius: 9999px;
  animation: pulse-circle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  width: 8px;
  height: 8px;
}
.eruda-icon-tool { font-size: 11px !important; }
.eruda-dev-toggle {
  position: fixed;
  z-index: 99999999999 !important;
  bottom: 0;
  right: 0;
}
.confirmation-container {
  background: white;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  border: 1px solid black;
  color: black;
}
.confirmation-text { padding-bottom: 10px; }
.confirmation-buttons { text-align: end; }
.confirmation-yes { background: white; }
.confirmation-no {
  background: black;
  color: white;
}
.confirmation-yes, .confirmation-no {
  border: 0;
  padding: 5px 10px;
  font-weight: bold;
}
.confirmation-yes:hover { background: #dddddd; }
.confirmation-no:hover { background: #343434; }
.grafou-kanban {
  background: white;
  padding: 10px;
  width: 90vw;
}
.kanban-board-item {
  height: 50svh;
}
.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  gap: 12px;
  font-family: sans-serif;
  overflow: auto;
}
.kanban-board-item {
  background: #f4f5f7;
  border-radius: 8px;
  padding: 8px;
  min-height: 200px;
  border: 3px solid gray;
  overflow: auto;
}
.kanban-todo { background: red; }
.kanban-doing { background: yellow; }
.kanban-done { background: lightgreen; }
.kanban-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}
.kanban-card {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 8px;
  cursor: grab;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.kanban-card-input {
  width: 100%;
  background: transparent;
  border: 0;
}
.kanban-add {
  width: 100%;
  padding: 6px;
  border: none;
  border-radius: 6px;
  background: #e1e4e8;
  cursor: pointer;
}
.disclaimer-modal .modal { z-index: 999999999; }
.disclaimer-modal .modal-content > div {
  background: gray;
  color: white;
  border: 1px solid black;
  padding: 10px;
  margin: 10px;
}
:root {
  --gitya-bg1: #181818;
  --gitya-bg2: #1f1f1f;
  --gitya-bg3: #2A2D2E;
  --gitya-bg4: #37373d;
  --gitya-bg5: #284358;
  --gitya-fg1: #cccccc;
  --gitya-fg2: #379eed;
  --gitya-fg3: #e71c1c;
  --gitya-fg4: #686363;
  --gitya-border1: #2b2b2b;
  --gitya-border2: #131313;
  --gitya-border3: #0078d4;
  --gitya-border4: #2c2a2a;
  --gitya-border5: gray;
  --gitya-border6: #454545;
}
.gitya-wpp { color: lightgreen; }
.gitya-confirmation { position: absolute; }
.gitya-confirmation .modal { z-index: 13; }
.gitya-grid {
  display: grid;
  grid-template-rows: auto min-content;
  height: 97svh;
}
.gitya-content {
  overflow: auto;
  display: grid;
  grid-template-columns: min-content auto;
}
.gitya-footer {
  display: grid;
  grid-template-columns: auto min-content;
  height: 22px;
  white-space: nowrap;
}
.gitya-app {
  position: relative;
  height: 100svh;
  color: var(--gitya-fg1);
  background: var(--gitya-bg1);
  font-family: sans-serif;
  width: 100vw;
}
.gitya-app .preview-wrapper {
  width: 100%;
}
.gitya-yrkit.yrkit-preview { height: 100%; }
.gitya-openedfiles-container {
  display: grid;
  grid-template-columns: min-content auto;
  overflow: auto;
  min-height: 29px;
}
.gitya-openedfiles-rule {
  border-bottom: 1px solid var(--gitya-border1);
}
.gitya-openedfiles-container .gitya-openfile-container {
  display: inline-grid;
  border-bottom: 1px solid var(--gitya-border1);
  border-right: 1px solid var(--gitya-border1);
  border-top: 1px solid transparent;
  position: relative;
  z-index: 10;
  background-color: #181818;
}
.gitya-openedfiles-container button {
  background: transparent;
  color: #ccc;
  border: 0;
  padding: 6px 3px;
}
.gitya-openedfiles-container .gitya-openfile {
  padding: 5px 14px;
  min-width: min-content;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gitya-openedfiles-container .gitya-openfile-close { padding-right: 8px; }
.gitya-toggle-nav-container {
  border-right: 1px solid var(--gitya-border1);
  position: sticky;
  top: 0;
  background: var(--gitya-bg1);
  z-index: 99;
  width: min-content;
}
.gitya-nav {
  height: calc(100svh - 22px);
  overflow: auto;
  display: grid;
  grid-template-rows: min-content auto;
}
.gitya-nav-inner-container {
  position: relative;
}
.gitya-nav-inner {
  background: var(--gitya-bg1);
  border-right: 1px solid var(--gitya-border1);
  overflow: auto;
  display: grid;
  height: 100%;
  grid-template-rows: min-content auto;
  width: 188px;
}
.gitya-nav-container {
  overflow: auto;
}
.gitya-openedfiles {
  max-height: 100px;
  overflow: auto;
  border-bottom: 1px solid var(--gitya-border1);
}
.gitya-nav button {
  text-align: start;
  width: 100%;
  background: transparent;
  color: var(--gitya-fg1);
  font-size: 10px;
  font-weight: bold;
  border: 0;
  padding: 4px 10px;
  display: block;
  position: relative;
}
.gitya-openedfiles .gitya-openfile-close { font-size: 8px; }
.gitya-toggle-nav-container {
  padding: 0 5px;
  border-bottom: 1px solid var(--gitya-border1);
}
.gitya-toggle-nav-container > button {
  font-size: 12px;
  padding: 2px;
}
.gitya-toggle-nav-item { border-bottom: 1px solid var(--gitya-border2); }
.gitya-body {
  display: grid;
  grid-template-rows: min-content auto;
}
.gitya-preview-container { height: 100%; }
.open-gitya-filetree { background: var(--gitya-bg4) !important; }
.active-gitya-filetree, .gitya-openedfiles .active-gitya-openfiles {
  background: var(--gitya-bg5) !important;
}
.gitya-openedfiles-container .active-gitya-openfiles {
  background: var(--gitya-bg2) !important;
  color: white !important;
  border-top: 1px solid var(--gitya-border3);
  border-bottom: 1px solid var(--gitya-bg2);
}
.gitya-openedfiles-container .active-gitya-openfiles button {
  font-weight: bold;
  color: white;
}
.gitya-filetree-rule { border-left: 1px solid var(--gitya-border1); }
.gitya-editing-file .gitya-openfile-restore,
.gitya-editing-file .gitya-openfile-save {
  color: var(--gitya-fg2) !important;
}
.gitya-editing-file .gitya-openfile-close {
  color: var(--gitya-fg3) !important;
}
.gitya-body .rules-grid { height: 88svh; }
.gitya-footer {
  border-top: 1px solid var(--gitya-border1);
}
.gitya-pro {
  width: min-content;
  align-self: end;
  justify-self: end;
  white-space: nowrap;
  font-weight: bold;
  height: 100%;
  font-size: 16px;
}
.gitya-pro a {
  color: white;
  text-decoration: none;
  padding: 5px;
  background: green;
  display: block;
}
.gitya-pro a:hover {
  background: lightgreen;
}
.gitya-wpp {
  text-decoration: none;
}
  @media only screen and (max-width: 802px) {
      .gitya-content {
    grid-template-columns: auto;
  }
  .gitya-nav-inner {
    width: 188px;
  }
  .gitya-nav {
    position: absolute;
    z-index: 11;
    top: 29px;
    height: calc(100svh - 22px - 29px);
  }
  .gitya-openedfiles-container {
    padding-left: 32px;
  }
  .gitya-toggle-nav-container {
    position: fixed;
    top: 0;
  }
  .gitya-toggle-nav-container button {
    height: 28px;
  }
  .highlight-rule {
    display: none;
  }
  .gitya-nav-inner-container {
    height: calc(100svh - 22px - 29px);
  }
  }
.context-menu-content {
  background: var(--gitya-bg2);
  border: 1px solid var(--gitya-border6);
  width: 150px;
}
.context-menu-content button {
  background: transparent;
  color: var(--gitya-fg1);
  padding: 10px 14px;
  font-size: 10px;
  border: 0;
  display: block;
  width: 100%;
  text-align: start;
}
.context-menu-content button:hover {
  background: var(--gitya-bg3);
}
.ctm-rule {
  border-bottom: 1px solid var(--gitya-border6);
  display: block;
}
.disabled-ctm-button {
  color: var(--gitya-fg4) !important;
}
.gitya-context-menu-wrapper .modal {
  z-index: 12;
}
.context-menu-modal .modal { backdrop-filter: none; }
.context-menu { position: fixed; }
.gitya-openfile-container {
  display: grid;
  grid-template-columns: auto repeat(3, min-content);
}
.gitya-openedfiles-iswrapper {
  text-decoration: underline;
}
.gitya-preview-inner { height: 100%; }
.gitya-preview-inner iframe {
  width: 100%;
  height: 100%;
  background: white;
  border: 0;
  outline: 0;
}
.gitya-yrkit .yrkit-preview { height: 100%; }
.hidden {
  display: none !important;
  /*position: absolute !important;
  z-index: -9999 !important;
  top: -20404px !important;
  opacity: 0 !important;*/
}
