/* node_modules/@melloware/coloris/dist/coloris.css */
.clr-picker {
  display: none;
  position: absolute;
  z-index: 1000;
  direction: ltr;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #fff;
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 200px;
  box-shadow: 0 0 5px #0000000d, 0 5px 20px #0000001a;
}

.clr-picker.clr-open, .clr-picker[data-inline="true"] {
  display: flex;
}

.clr-picker[data-inline="true"] {
  position: relative;
}

.clr-gradient {
  position: relative;
  cursor: pointer;
  background-image: linear-gradient(#0000, #000), linear-gradient(90deg, #fff, currentColor);
  border-radius: 3px 3px 0 0;
  width: 100%;
  height: 100px;
  margin-bottom: 15px;
}

.clr-marker {
  position: absolute;
  cursor: pointer;
  background-color: currentColor;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
}

.clr-picker input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 16px;
}

.clr-picker input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
}

.clr-picker input[type="range"]::-moz-range-track {
  border: 0;
  width: 100%;
  height: 16px;
}

.clr-picker input[type="range"]::-moz-range-thumb {
  border: 0;
  width: 16px;
  height: 16px;
}

.clr-hue {
  background-image: linear-gradient(to right, red 0%, #ff0 16.66%, #0f0 33.33%, #0ff 50%, #00f 66.66%, #f0f 83.33%, red 100%);
}

.clr-hue, .clr-alpha {
  position: relative;
  border-radius: 4px;
  width: calc(100% - 40px);
  height: 8px;
  margin: 5px 20px;
}

.clr-alpha span {
  display: block;
  border-radius: inherit;
  background-image: linear-gradient(90deg, #0000, currentColor);
  width: 100%;
  height: 100%;
}

.clr-hue input[type="range"], .clr-alpha input[type="range"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-color: #0000;
  width: calc(100% + 32px);
  height: 16px;
  margin: 0;
  top: -4px;
  left: -16px;
}

.clr-hue div, .clr-alpha div {
  position: absolute;
  pointer-events: none;
  background-color: currentColor;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 1px #888;
}

.clr-alpha div:before {
  content: "";
  position: absolute;
  background-color: currentColor;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.clr-format {
  display: none;
  order: 1;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
}

.clr-segmented {
  display: flex;
  position: relative;
  box-sizing: border-box;
  color: #999;
  border: 1px solid #ddd;
  border-radius: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.clr-segmented input, .clr-segmented legend {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}

.clr-segmented label {
  font-size: inherit;
  font-weight: normal;
  line-height: initial;
  text-align: center;
  cursor: pointer;
  flex-grow: 1;
  margin: 0;
  padding: 4px 0;
}

.clr-segmented label:first-of-type {
  border-radius: 10px 0 0 10px;
}

.clr-segmented label:last-of-type {
  border-radius: 0 10px 10px 0;
}

.clr-segmented input:checked + label {
  color: #fff;
  background-color: #666;
}

.clr-swatches {
  order: 2;
  width: calc(100% - 32px);
  margin: 0 16px;
}

.clr-swatches div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 12px;
}

.clr-swatches button {
  position: relative;
  color: inherit;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 4px 6px;
  padding: 0;
}

.clr-swatches button:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: inherit;
  background-color: currentColor;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px #0000001a;
}

input.clr-color {
  color: #444;
  text-align: center;
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  order: 1;
  width: calc(100% - 80px);
  height: 32px;
  margin: 15px 20px 20px auto;
  padding: 0 10px;
  font-family: sans-serif;
  font-size: 14px;
}

input.clr-color:focus {
  outline: none;
  border: 1px solid #1e90ff;
}

.clr-close, .clr-clear {
  display: none;
  color: #fff;
  cursor: pointer;
  background-color: #666;
  border: 0;
  border-radius: 12px;
  order: 2;
  height: 24px;
  margin: 0 20px 20px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
}

.clr-close {
  display: block;
  margin: 0 20px 20px auto;
}

.clr-preview {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 15px 0 20px 20px;
}

.clr-preview:before, .clr-preview:after {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.clr-preview:after {
  background-color: currentColor;
  border: 0;
  box-shadow: inset 0 0 0 1px #0000001a;
}

.clr-preview button {
  position: absolute;
  z-index: 1;
  outline-offset: -2px;
  text-indent: -9999px;
  cursor: pointer;
  overflow: hidden;
  background-color: #0000;
  border: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.clr-marker, .clr-hue div, .clr-alpha div, .clr-color {
  box-sizing: border-box;
}

.clr-field {
  display: inline-block;
  position: relative;
  color: #0000;
}

.clr-field input {
  direction: ltr;
  margin: 0;
}

.clr-field.clr-rtl input {
  text-align: right;
}

.clr-field button {
  position: absolute;
  color: inherit;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  border: 0;
  width: 30px;
  height: 100%;
  margin: 0;
  padding: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.clr-field.clr-rtl button {
  left: 0;
  right: auto;
}

.clr-field button:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: inherit;
  background-color: currentColor;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 1px #00000080;
}

.clr-alpha, .clr-alpha div, .clr-swatches button, .clr-preview:before, .clr-field button {
  background-image: repeating-linear-gradient(45deg, #aaa 25%, #0000 25% 75%, #aaa 75%, #aaa), repeating-linear-gradient(45deg, #aaa 25%, #fff 25% 75%, #aaa 75%, #aaa);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
}

.clr-marker:focus {
  outline: none;
}

.clr-keyboard-nav .clr-marker:focus, .clr-keyboard-nav .clr-hue input:focus + div, .clr-keyboard-nav .clr-alpha input:focus + div, .clr-keyboard-nav .clr-segmented input:focus + label {
  outline: none;
  box-shadow: 0 0 0 2px #1e90ff, 0 0 2px 2px #fff;
}

.clr-picker[data-alpha="false"] .clr-alpha {
  display: none;
}

.clr-picker[data-minimal="true"] {
  padding-top: 16px;
}

.clr-picker[data-minimal="true"] .clr-gradient, .clr-picker[data-minimal="true"] .clr-hue, .clr-picker[data-minimal="true"] .clr-alpha, .clr-picker[data-minimal="true"] .clr-color, .clr-picker[data-minimal="true"] .clr-preview {
  display: none;
}

.clr-dark {
  background-color: #444;
}

.clr-dark .clr-segmented {
  border-color: #777;
}

.clr-dark .clr-swatches button:after {
  box-shadow: inset 0 0 0 1px #ffffff4d;
}

.clr-dark input.clr-color {
  color: #fff;
  background-color: #555;
  border-color: #777;
}

.clr-dark input.clr-color:focus {
  border-color: #1e90ff;
}

.clr-dark .clr-preview:after {
  box-shadow: inset 0 0 0 1px #ffffff80;
}

.clr-dark .clr-alpha, .clr-dark .clr-alpha div, .clr-dark .clr-swatches button, .clr-dark .clr-preview:before {
  background-image: repeating-linear-gradient(45deg, #666 25%, #0000 25% 75%, #888 75%, #888), repeating-linear-gradient(45deg, #888 25%, #444 25% 75%, #888 75%, #888);
}

.clr-picker.clr-polaroid {
  border-radius: 6px;
  box-shadow: 0 0 5px #0000001a, 0 5px 30px #0003;
}

.clr-picker.clr-polaroid:before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  color: #fff;
  filter: drop-shadow(0 -4px 3px #0000001a);
  pointer-events: none;
  border: 8px solid #0000;
  border-top-width: 0;
  border-bottom: 10px solid;
  width: 16px;
  height: 10px;
  top: -10px;
  left: 20px;
}

.clr-picker.clr-polaroid.clr-dark:before {
  color: #444;
}

.clr-picker.clr-polaroid.clr-left:before {
  left: auto;
  right: 20px;
}

.clr-picker.clr-polaroid.clr-top:before {
  top: auto;
  bottom: -10px;
  transform: rotateZ(180deg);
}

.clr-polaroid .clr-gradient {
  border-radius: 3px;
  width: calc(100% - 20px);
  height: 120px;
  margin: 10px;
}

.clr-polaroid .clr-hue, .clr-polaroid .clr-alpha {
  border-radius: 5px;
  width: calc(100% - 30px);
  height: 10px;
  margin: 6px 15px;
}

.clr-polaroid .clr-hue div, .clr-polaroid .clr-alpha div {
  box-shadow: 0 0 5px #0003;
}

.clr-polaroid .clr-format {
  width: calc(100% - 20px);
  margin: 0 10px 15px;
}

.clr-polaroid .clr-swatches {
  width: calc(100% - 12px);
  margin: 0 6px;
}

.clr-polaroid .clr-swatches div {
  padding-bottom: 10px;
}

.clr-polaroid .clr-swatches button {
  width: 22px;
  height: 22px;
}

.clr-polaroid input.clr-color {
  width: calc(100% - 60px);
  margin: 10px 10px 15px auto;
}

.clr-polaroid .clr-clear {
  margin: 0 10px 15px;
}

.clr-polaroid .clr-close {
  margin: 0 10px 15px auto;
}

.clr-polaroid .clr-preview {
  margin: 10px 0 15px 10px;
}

.clr-picker.clr-large {
  width: 275px;
}

.clr-large .clr-gradient {
  height: 150px;
}

.clr-large .clr-swatches button {
  width: 22px;
  height: 22px;
}

.clr-picker.clr-pill {
  box-sizing: border-box;
  width: 380px;
  padding-left: 180px;
}

.clr-pill .clr-gradient {
  position: absolute;
  border-radius: 3px 0 0 3px;
  width: 180px;
  height: 100%;
  margin-bottom: 0;
  top: 0;
  left: 0;
}

.clr-pill .clr-hue {
  margin-top: 20px;
}

/* public/css/main.css */
body {
  color: #fff;
  background-color: #000;
  margin: 0;
  font-family: monospace;
  font-size: 20px;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  white-space: nowrap;
  border: 2px solid;
  border-radius: 2px;
  padding: 0 .5em;
  transition: box-shadow .1s ease-in-out;
  font-size: 1em;
  line-height: 1;
}

button:not(:disabled):-webkit-any(:hover, :focus) {
  outline: 0;
  box-shadow: 0 0 0 2px;
}

button:not(:disabled):-moz-any(:hover, :focus) {
  outline: 0;
  box-shadow: 0 0 0 2px;
}

button:not(:disabled):is(:hover, :focus) {
  outline: 0;
  box-shadow: 0 0 0 2px;
}

button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.--bold {
  font-weight: bold;
}

.--text-sm {
  font-size: .8em;
}

a:-webkit-any(:hover, :focus) > .link-icon {
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
}

a:-moz-any(:hover, :focus) > .link-icon {
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
}

a:is(:hover, :focus) > .link-icon {
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
}

:-webkit-any(a, [data-theme]:not(.--noedit)):focus-visible {
  outline: 0;
}

:-moz-any(a, [data-theme]:not(.--noedit)):focus-visible {
  outline: 0;
}

:is(a, [data-theme]:not(.--noedit)):focus-visible {
  outline: 0;
}

:not(:-webkit-any(a, [data-theme]:not(.--noedit))):focus-visible {
  outline: 2px solid #3345df;
  outline-offset: -2px;
}

:not(:-moz-any(a, [data-theme]:not(.--noedit))):focus-visible {
  outline: 2px solid #3345df;
  outline-offset: -2px;
}

:not(:is(a, [data-theme]:not(.--noedit))):focus-visible {
  outline: 2px solid #3345df;
  outline-offset: -2px;
}

.--hidden {
  display: none !important;
}

[data-theme]:not(.--noedit) {
  position: relative;
  cursor: pointer;
}

[data-theme]:not(.--noedit):not(:has(:-webkit-any([data-theme]:not(.--noedit):-webkit-any(:hover, :focus), a:hover))):-webkit-any(:hover, :focus) {
  outline: 2px solid #fff9;
  outline-offset: -2px;
}

[data-theme]:not(.--noedit):not(:has(:-moz-any([data-theme]:not(.--noedit):-moz-any(:hover, :focus), a:hover))):-moz-any(:hover, :focus) {
  outline: 2px solid #fff9;
  outline-offset: -2px;
}

[data-theme]:not(.--noedit):not(:has(:is([data-theme]:not(.--noedit):is(:hover, :focus), a:hover))):is(:hover, :focus) {
  outline: 2px solid #fff9;
  outline-offset: -2px;
}

[data-theme]:not(.--noedit):after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  background-color: #ffffff10;
  width: 100%;
  height: 100%;
  transition: opacity .1s ease-in-out;
  inset: 0;
}

[data-theme]:not(.--noedit):not(:has(:-webkit-any([data-theme]:not(.--noedit):hover, a:hover))):-webkit-any(:hover, :focus):after {
  opacity: 1;
}

[data-theme]:not(.--noedit):not(:has(:-moz-any([data-theme]:not(.--noedit):hover, a:hover))):-moz-any(:hover, :focus):after {
  opacity: 1;
}

[data-theme]:not(.--noedit):not(:has(:is([data-theme]:not(.--noedit):hover, a:hover))):is(:hover, :focus):after {
  opacity: 1;
}

/* public/css/theme.css */
.theme {
  --theme-bar-focused_background-background: #000;
  --theme-bar-focused_background-text: #000;
  --theme-bar-focused_background-border: #000;
  --theme-bar-focused_statusline-background: #000;
  --theme-bar-focused_statusline-text: #000;
  --theme-bar-focused_statusline-border: #000;
  --theme-bar-focused_separator-background: #000;
  --theme-bar-focused_separator-text: #000;
  --theme-bar-focused_separator-border: #000;
  --theme-bar-focused_workspace-background: #000;
  --theme-bar-focused_workspace-text: #000;
  --theme-bar-focused_workspace-border: #000;
  --theme-bar-active_workspace-background: #000;
  --theme-bar-active_workspace-text: #000;
  --theme-bar-active_workspace-border: #000;
  --theme-bar-inactive_workspace-background: #000;
  --theme-bar-inactive_workspace-text: #000;
  --theme-bar-inactive_workspace-border: #000;
  --theme-bar-urgent_workspace-background: #000;
  --theme-bar-urgent_workspace-text: #000;
  --theme-bar-urgent_workspace-border: #000;
  --theme-bar-background: #000;
  --theme-bar-statusline: #000;
  --theme-bar-separator: #000;
  --theme-bar-binding_mode-background: #000;
  --theme-bar-binding_mode-text: #000;
  --theme-bar-binding_mode-border: #000;
  --theme-window-focused-border: #000;
  --theme-window-focused-background: #000;
  --theme-window-focused-text: #000;
  --theme-window-focused_inactive-border: #000;
  --theme-window-focused_inactive-background: #000;
  --theme-window-focused_inactive-text: #000;
  --theme-window-unfocused-border: #000;
  --theme-window-unfocused-background: #000;
  --theme-window-unfocused-text: #000;
  --theme-window-urgent-border: #000;
  --theme-window-urgent-background: #000;
  --theme-window-urgent-text: #000;
  --theme-window-placeholder-border: #000;
  --theme-window-placeholder-background: #000;
  --theme-window-placeholder-text: #000;
  --theme-window-background: #000;
  --theme-window-focused-indicator: #000;
  --theme-window-focused-child_border: #000;
  --theme-window-focused_inactive-indicator: #000;
  --theme-window-focused_inactive-child_border: #000;
  --theme-window-unfocused-indicator: #000;
  --theme-window-unfocused-child_border: #000;
  --theme-window-urgent-indicator: #000;
  --theme-window-urgent-child_border: #000;
  --theme-window-placeholder-indicator: #000;
  --theme-window-placeholder-child_border: #000;
  --config-bar-separator-symbol: "|";
  --config-bar-border-width: .25em;
  --config-window-border-width: .25em;
}

/* public/css/desktop.css */
.desktop {
  position: fixed;
  display: flex;
  flex-direction: column;
  inset: 0;
}

.desktop-bar {
  position: relative;
  display: flex;
  border: solid var(--config-bar-border-width);
  box-sizing: border-box;
  background-color: var(--theme-bar-focused_background-background);
  color: var(--theme-bar-focused_background-text);
  border-color: var(--theme-bar-focused_background-border);
  flex-grow: 0;
  justify-content: space-between;
  align-items:  center;
  height: 2em;
}

.desktop-bar__workspaces {
  position: relative;
  flex-grow: 1;
  width: 100%;
}

.desktop-bar__separator {
  border: solid var(--config-bar-border-width);
  box-sizing: border-box;
  background-color: var(--theme-bar-focused_separator-background);
  color: var(--theme-bar-focused_separator-text);
  border-color: var(--theme-bar-focused_separator-border);
  flex-grow: 0;
  margin: 0 1em;
}

.desktop-bar__separator:before {
  content: var(--config-bar-separator-symbol);
}

.desktop-bar__statusline {
  text-align: right;
  border: solid var(--config-bar-border-width);
  box-sizing: border-box;
  background-color: var(--theme-bar-focused_statusline-background);
  color: var(--theme-bar-focused_statusline-text);
  border-color: var(--theme-bar-focused_statusline-border);
  flex-grow: 1;
  width: 100%;
}

.desktop-bar__tray {
  display: flex;
  align-items:  center;
  gap: .5em;
  height: 100%;
}

.desktop-bar__tray__item {
  position: relative;
  display: inline-block;
  aspect-ratio: 1;
  height: 100%;
}

.desktop-bar__tray__item img {
  width: 100%;
  height: 100%;
}

.desktop-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* public/css/workspace.css */
.workspaces {
  position: relative;
  display: flex;
  justify-content: flex-start;
  height: 100%;
}

.workspace {
  text-align: center;
  display: flex;
  border: solid var(--config-bar-border-width);
  box-sizing: border-box;
  background-color: var(--theme-bar-active_workspace-background);
  color: var(--theme-bar-active_workspace-text);
  border-color: var(--theme-bar-active_workspace-border);
  justify-content: center;
  align-items:  center;
  min-width: 2em;
  height: 100%;
}

.workspace.--focused {
  background-color: var(--theme-bar-focused_workspace-background);
  color: var(--theme-bar-focused_workspace-text);
  border-color: var(--theme-bar-focused_workspace-border);
}

.workspace.--active {
  background-color: var(--theme-bar-active_workspace-background);
  color: var(--theme-bar-active_workspace-text);
  border-color: var(--theme-bar-active_workspace-border);
}

.workspace.--inactive {
  background-color: var(--theme-bar-inactive_workspace-background);
  color: var(--theme-bar-inactive_workspace-text);
  border-color: var(--theme-bar-inactive_workspace-border);
}

.workspace.--urgent {
  background-color: var(--theme-bar-urgent_workspace-background);
  color: var(--theme-bar-urgent_workspace-text);
  border-color: var(--theme-bar-urgent_workspace-border);
}

/* public/css/window.css */
.windows {
  position: relative;
  display: flex;
  background-color: var(--theme-window-background);
  justify-content: stretch;
  width: 100%;
  height: 100%;
}

.window {
  z-index: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.window-bar {
  display: flex;
  border: solid var(--config-window-border-width);
  box-sizing: border-box;
  background-color: var(--theme-window-unfocused-background);
  color: var(--theme-window-unfocused-text);
  border-color: var(--theme-window-unfocused-border);
  align-items:  center;
  width: 100%;
  height: 2em;
  padding: 0 .25em;
}

.window.--focused-inactive .window-bar {
  background-color: var(--theme-window-focused_inactive-background);
  color: var(--theme-window-focused_inactive-text);
  border-color: var(--theme-window-focused_inactive-border);
}

.window.--focused .window-bar {
  background-color: var(--theme-window-focused-background);
  color: var(--theme-window-focused-text);
  border-color: var(--theme-window-focused-border);
}

.window.--urgent .window-bar {
  background-color: var(--theme-window-urgent-background);
  color: var(--theme-window-urgent-text);
  border-color: var(--theme-window-urgent-border);
}

.window-body {
  z-index: -1;
  position: relative;
  border: solid var(--config-window-border-width);
  box-sizing: border-box;
  border-color: var(--theme-window-unfocused-border);
  background-color: var(--theme-window-placeholder-background);
  color: var(--theme-window-placeholder-text);
  width: 100%;
  height: 100%;
}

.window.--focused-inactive .window-body {
  border-color: var(--theme-window-focused_inactive-border);
}

.window.--focused .window-body {
  border-color: var(--theme-window-focused-border);
}

.window.--urgent .window-body {
  border-color: var(--theme-window-urgent-border);
}

.window-body:not(.--no-placeholder):before {
  content: "Window Placeholder";
  position: absolute;
}

/* public/css/editor.css */
.editor {
  position: fixed;
  display: none;
  z-index: -1;
  pointer-events: none;
  box-sizing: border-box;
  box-shadow: 0 0 16px 2px var(--theme-window-focused-border);
  width: auto;
  min-width: 20em;
  height: auto;
  min-height: 10em;
}

.editor.--open {
  display: block;
  z-index: 1;
  pointer-events: all;
}

.editor .editor-header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 1em;
}

.editor .editor-header .__title {
  flex-basis: 100%;
}

.editor .editor-header .__close {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  aspect-ratio: 1;
  border: none;
  border-radius: 0;
  height: 100%;
  padding: 0;
  font-size: 1em;
  font-weight: bold;
}

.editor .editor-body {
  padding: 1em;
}

.editor .editor-input {
  display: flex;
  grid-gap: .5em;
  flex-direction: column;
  justify-content: flex-start;
}

.editor .editor-input .input-color-label {
  text-decoration: underline;
}

.editor .editor-form {
  display: flex;
  grid-gap: 1em;
  flex-direction: column;
}

/* public/css/draggable.css */
.draggable {
  position: fixed;
}

.draggable .draggable__handle {
  user-select: none;
}

.draggable:not(.--dragging) .draggable__handle {
  cursor: grab;
}

.draggable.--dragging .draggable__handle {
  cursor: grabbing;
}

/* public/css/export.css */
.export, .import {
  display: flex;
  grid-gap: 1em;
  flex-direction: column;
  padding: 1em;
}

.export .export__button {
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 8em;
}

.export .export__config, .import .import__config {
  flex-grow: 1;
  flex-shrink: 1;
}

/* public/css/styles.css */

