@charset "UTF-8";*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.kbv {
  height: 100px;
  border-block: 1px solid black;
  font-size: 10px;
  position: relative;
}
.kbv .kbv-top {
  position: absolute;
  display: flex;
  height: 66%;
  width: 100%;
  z-index: 2;
}
.kbv .kbv-top .black {
  min-width: 0;
  flex: 1;
  --lightness: 0%;
  border: 1px solid black;
  border-style: none solid solid solid;
}
.kbv .kbv-top .black[data-isdown=true] {
  color: black;
  --lightness: 50%;
}
.kbv .kbv-top .white {
  min-width: 0;
  flex: 1;
  pointer-events: none;
}
.kbv .kbv-bottom {
  height: 100%;
  display: flex;
}
.kbv .kbv-bottom .white {
  min-width: 0;
  flex: 1;
  --lightness: 100%;
}
.kbv .kbv-bottom .white[data-isdown=true] {
  --lightness: 70%;
}
.kbv .kbv-bottom .white:not(:last-child) {
  border-right: 1px solid black;
}

.notation .mark {
  fill: black !important;
}
.notation .mark path[data-name="_B,"] {
  fill: lightblue !important;
}/*# sourceMappingURL=game.css.map */
*, ::before, ::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

ul[class] {
  list-style-type: none;
  padding: 0;
}

:root {
  --direction: ltr;
}

.centered {
  max-width: 400px;
  margin: 0 auto;
}

.form-page .form-page-header {
  user-select: none;
}

/*
.form-section {
  .form-section-header {
    user-select: none;
    .section-disclosure {
      img {
        transition: transform 0.1s ease; // BEGIN: Animation
        transform: rotate(0deg);
      }
    }
    .section-label {}
  }
  .form-section-questions {}

  &[aria-expanded=true] {
    .section-disclosure img {
      transform: rotate(90deg);
    }
  }
  &[aria-expanded=false] {
    .form-section-questions {
      display: none;
    }
  }
}
*/
.form-section-header {
  line-height: normal;
}

.form-section-header {
  user-select: none;
  font-size: 30px;
  user-select: none;
  background: var(--collapsed-bg);
  border-top: 1px solid black;
  padding-block: 10px;
  padding-left: 16px;
  margin-inline: -20px;
  font-size: 20px;
  position: relative;
}
.form-section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  transition: opacity 0.3s;
  background: var(--expanded-bg);
}
.form-section-header {
  display: flex;
  gap: 17px;
}
.form-section-header .section-disclosure {
  flex: 0;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.form-section-header .section-label {
  flex: 1;
  position: relative;
  z-index: 1;
}
.form-section.expandable .form-section-header {
  cursor: pointer;
}

.form-section.expanded .section-disclosure {
  transform: rotate(90deg);
}
.form-section.expanded .form-section-header::before {
  opacity: 1;
}

.form-section:not(.expanded) .form-section-questions {
  display: none;
}
.form-section:not(.expanded) .form-section-header::before {
  opacity: 0;
}

:root {
  --font-size-input: 20px;
  --font-size-label: 20px;
}

.q {
  line-height: normal;
}
.q .q-unit-before, .q .q-unit-after {
  user-select: none;
  --margin-inner: calc(var(--font-size-input) * 0.2);
}
.q .q-unit-before {
  margin-inline-end: var(--margin-inner);
}
.q .q-unit-after {
  margin-inline-start: var(--margin-inner);
}
.q .q-label {
  user-select: none;
  font-size: calc(var(--font-size-input) * 1);
  font-weight: 500;
  margin-bottom: calc(var(--font-size-input) * 0.5);
}
.q .option-label {
  user-select: none;
}
.q {
  padding-bottom: calc(var(--font-size-input) * 1);
}
.q .q-explanation {
  padding-inline: 15px;
  padding-block: 10px;
  font-size: calc(var(--font-size-input) * 0.75);
  background-color: hsl(55, 90%, 92%);
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  margin-inline: -15px;
}

.q-inline-labels {
  display: flex;
  align-items: baseline;
}
.q-inline-labels .q-text-input-outer {
  display: flex;
  align-items: baseline;
}
.q-inline-labels .q-text-input-outer[data-fullwidth=true] {
  flex: 1;
}
.q-inline-labels .q-text-input-outer[data-fullwidth=true] .q-text-input-s {
  flex: 1;
}

.q-text-input-prefix, .q-text-input-suffix {
  user-select: none;
  opacity: 0.5;
  pointer-events: none;
  --margin-outer: calc(var(--font-size-input) * 0.3);
  --margin-inner: calc(var(--font-size-input) * -0.1);
}

.q-text-input-prefix {
  margin-inline-start: var(--margin-outer);
  margin-inline-end: var(--margin-inner);
}

.q-text-input-suffix {
  margin-inline-start: var(--margin-inner);
  margin-inline-end: var(--margin-outer);
}

.q-text-input-outer {
  display: inline-block;
  outline: 1px solid black;
}
.q-text-input-outer:has(> :focus) {
  outline: 2px solid #005fcc;
  border-radius: 2px;
}

input.q-text-input-s {
  font-size: var(--font-size-input);
  outline: none;
  border: none;
  padding-inline: 5px;
  padding-block: 5px;
}
textarea.q-text-input-l {
  outline: none;
  border: none;
  padding-inline: 5px;
  padding-block: 5px;
  resize: vertical;
  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: var(--font-size-input);
}

.q-options-search input[type=search] {
  border-radius: 1000px;
  border: 1px solid black;
  font-size: var(--font-size-input);
  width: 100%;
  padding-inline-start: calc(var(--font-size-input) * 1);
  padding-block: calc(var(--font-size-input) * 0.2);
  margin-bottom: calc(var(--font-size-input) * 0.5);
}

.q-list-outer .q-list-item {
  border: 1px solid black;
  padding: 10px;
}

.q-options-list input[type=radio], .q-options-list input[type=checkbox] {
  display: none;
}

.q-options-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.q-options-list[data-usegrid=false] {
  padding-left: calc(var(--font-size-input) * 1);
}
.q-options-list[data-usegrid=false] label {
  display: block;
  border-radius: 5px;
  margin-bottom: calc(var(--font-size-input) * 0.5);
}
li:last-child > .q-options-list[data-usegrid=false] label {
  margin-bottom: 0;
}
.q-options-list[data-usegrid=false] label {
  background: linear-gradient(90deg, #B5B5B5, hsl(0, 0%, 100%));
  font-size: var(--font-size-input);
  line-height: normal;
  padding: 1px;
}
.q-options-list[data-usegrid=false] label.selected {
  padding: 2px;
  background: #379AFD;
}
.q-options-list[data-usegrid=false] label .opt-inner {
  border-radius: 4px;
  user-select: none;
}
.q-options-list[data-usegrid=false] label .opt-has-checkbox {
  display: flex;
  align-items: center;
  gap: calc(var(--font-size-input) * 0.5);
}
.q-options-list[data-usegrid=false] label .opt-checkbox {
  flex: 0;
  width: 1em;
  min-width: 1em;
  max-width: 1em;
  height: 1em;
  border-radius: 4px;
  border: 1px solid hsl(0, 0%, 50%);
  background: white;
}
.q-options-list[data-usegrid=false] label.selected .opt-checkbox {
  background: rgb(206.4851485149, 230.5, 254.5148514851);
  border-color: #379AFD;
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-options-list[data-usegrid=false] label.selected .opt-checkbox::after {
  content: "×";
  font-size: 18px;
  line-height: 18px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.q-options-list[data-usegrid=false] label .opt-inner {
  flex: 1;
  padding-left: calc(calc(var(--font-size-input) * 1) + 1px);
  padding-block: calc(calc(var(--font-size-input) * 0.2) + 1px);
  background: #F8F8F8;
}
.q-options-list[data-usegrid=false] label.selected .opt-inner {
  padding-left: calc(var(--font-size-input) * 1);
  padding-block: calc(var(--font-size-input) * 0.2);
  background: white;
  color: hsl(210, 98%, 40%);
}

.q-options-list[data-usegrid=true] {
  display: grid;
  grid-template-columns: repeat(var(--q-options-grid-cols), 1fr);
  gap: 1px;
  border-radius: 10px;
  overflow: hidden;
  background: #b3b3b3;
  border: 1px solid #b3b3b3;
  width: fit-content;
}
.q-options-list[data-usegrid=true] > li {
  background: #F8F8F8;
  font-size: calc(var(--font-size-input) * 0.9);
  padding-block: calc(var(--font-size-input) * 0.45);
  padding-inline: calc(var(--font-size-input) * 0.225);
}
.q-options-list[data-usegrid=true] > li[aria-checked=true] {
  background: #379AFD;
  color: white;
}
.q-options-list[data-usegrid=true] > li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.q-plainmonth > .q-options-outer > .q-options-list > li label .opt-inner {
  text-align: center;
}
.q-plainmonth > .q-options-outer > .q-options-list > li {
  font-size: calc(var(--font-size-input) * 0.8);
}
.q-plainmonth > .q-options-outer > .q-options-list > li ::first-line {
  font-size: calc(var(--font-size-input) * 0.8);
}

.option-emoji {
  margin-right: 0.66ch;
}

.q-pcsm .q-pcsm-selector[data-fullscreen=true] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(0, 0%, 0%, 0.5);
  z-index: 999;
  backdrop-filter: blur(10px);
  padding: calc(var(--font-size-input) * 1.5);
}
.q-pcsm .q-pcsm-selector .q-pcsm-options {
  display: grid;
  grid-template-columns: max-content max-content 1fr;
}
.q-pcsm .q-pcsm-option {
  display: contents;
}
.q-pcsm .q-pcsm-option[aria-selected=true] > div {
  background-color: red;
}
.qt-temporal_plain_day-outer {
  user-select: none;
  display: grid;
  --day-size: calc(var(--font-size-input) * 0.9);
  --day-size-min: calc(var(--day-size) * 2);
  --day-size-max: calc(var(--day-size) * 3);
  grid-template-columns: repeat(7, 1fr);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  border: 1px solid #b3b3b3;
  background-color: #b3b3b3;
  gap: 1px;
}
.qt-temporal_plain_day-outer .qt-temporal_plain_day-week {
  display: contents;
}
.qt-temporal_plain_day-outer .qt-temporal_plain_day-week button.qt-temporal_plain_day-day {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  --day-size: calc(var(--font-size-input) * 0.9);
  min-height: calc(var(--day-size) * 2.2);
  line-height: calc(var(--day-size) * 2.2);
  aspect-ratio: 8/7;
  font-size: var(--day-size);
  cursor: pointer;
  background-color: #F8F8F8;
}
.qt-temporal_plain_day-outer .qt-temporal_plain_day-week button.qt-temporal_plain_day-day.weekend {
  background-color: hsl(60, 80%, 90%);
}
.qt-temporal_plain_day-outer .qt-temporal_plain_day-week button.qt-temporal_plain_day-day.today {
  background-color: hsl(140, 80%, 90%);
}
.qt-temporal_plain_day-outer .qt-temporal_plain_day-week button.qt-temporal_plain_day-day.postpre {
  cursor: default;
  background-color: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 60%);
}
.qt-temporal_plain_day-outer .qt-temporal_plain_day-week button.qt-temporal_plain_day-day[aria-selected=true] {
  background-color: #379AFD;
  color: white;
}
.qt-temporal_plain_day-outer .qt-temporal_plain_day-week-header .qt-temporal_plain_day-day-header {
  text-align: center;
  background-color: white;
  color: hsl(0, 0%, 25%);
  padding-block: calc(var(--font-size-input) * 0.3);
}

.q-rating {
  user-select: none;
  cursor: pointer;
  width: fit-content;
  font-size: 40px;
}
.q-rating > span {
  pointer-events: none;
}
.q-rating > span[data-lit=true] {
  color: gold;
}

.q-selfiecaptcha .selfie-start-screen .selfie-start-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.q-selfiecaptcha .selfie-start-screen .selfie-start-button:hover {
  background: #0056b3;
}
.q-selfiecaptcha .selfie-loading {
  text-align: center;
  padding: 60px 20px;
}
.q-selfiecaptcha .selfie-loading p {
  color: #666;
  font-size: 16px;
}
.q-selfiecaptcha .selfie-camera-view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #000;
  overflow: hidden;
}
.q-selfiecaptcha .selfie-camera-view .selfie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-oval-cutout {
  position: absolute;
  top: 50%;
  left: 50%;
}
@media (max-aspect-ratio: 0.7293354943) {
  .q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-oval-cutout {
    width: 80vw;
    height: 109.688888888vw;
  }
}
@media (min-aspect-ratio: 0.7293354943) {
  .q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-oval-cutout {
    width: 58.3468395467vh;
    height: 80vh;
  }
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-oval-cutout {
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.8), 0 0 0 9999px rgba(0, 0, 0, 0.5);
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-oval-cutout::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0, 123, 255, 0.3);
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-instructions-overlay {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  text-align: center;
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-instructions-overlay p {
  margin: 0;
  font-size: 14px;
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-instructions-overlay .selfie-audio-level {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-instructions-overlay .selfie-audio-level .audio-level-meter {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.2);
}
.q-selfiecaptcha .selfie-camera-view .selfie-overlay .selfie-instructions-overlay .selfie-audio-level .audio-level-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.q-selfiecaptcha .selfie-camera-view .selfie-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.q-selfiecaptcha .selfie-camera-view .selfie-controls .selfie-challenge-button {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}
.q-selfiecaptcha .selfie-camera-view .selfie-controls .selfie-challenge-button:hover {
  background: rgb(255, 255, 255);
}
.q-selfiecaptcha .selfie-error {
  text-align: center;
  padding: 40px 20px;
}
.q-selfiecaptcha .selfie-error .selfie-error-message {
  color: #dc3545;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}
.q-selfiecaptcha .selfie-error .selfie-retry-button {
  background: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.q-selfiecaptcha .selfie-error .selfie-retry-button:hover {
  background: #c82333;
}

.q-mediafile .mediafile-search {
  margin-bottom: 20px;
}
.q-mediafile .mediafile-search .search-input {
  width: 100%;
  padding: 10px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.q-mediafile .mediafile-search .search-input:focus {
  outline: none;
  border-color: #007bff;
}
.q-mediafile .mediafile-search .search-input::placeholder {
  color: #6c757d;
}
.q-mediafile .batch-operations {
  margin-bottom: 16px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
}
.q-mediafile .batch-operations .batch-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.q-mediafile .batch-operations .batch-btn:hover {
  background: #c82333;
}
.q-mediafile .mediafile-section {
  margin-bottom: 24px;
}
.q-mediafile .mediafile-section:last-child {
  margin-bottom: 0;
}
.q-mediafile .mediafile-upload-zone {
  border: 3px dashed #dee2e6;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  background: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
}
.q-mediafile .mediafile-upload-zone:hover {
  border-color: #007bff;
  background: #e7f3ff;
}
.q-mediafile .mediafile-upload-zone.drag-active {
  border-color: #28a745;
  background: #e8f5e8;
  transform: scale(1.02);
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.7;
}
.q-mediafile .mediafile-upload-zone .upload-content h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #495057;
  font-weight: 600;
}
.q-mediafile .mediafile-upload-zone .upload-content .section-description {
  margin: 0 0 20px 0;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.4;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions .upload-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions .upload-btn:hover {
  background: #0056b3;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions .upload-btn.primary {
  background: #28a745;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions .upload-btn.primary:hover {
  background: #218838;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions .url-import {
  display: flex;
  gap: 8px;
  align-items: center;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions .url-import .url-input {
  padding: 8px 12px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  font-size: 14px;
  min-width: 200px;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-actions .url-import .url-input:focus {
  outline: none;
  border-color: #007bff;
}
.q-mediafile .mediafile-upload-zone .upload-content .upload-hint {
  margin: 0 0 12px 0;
  color: #6c757d;
  font-size: 14px;
}
.q-mediafile .mediafile-upload-zone .upload-content .allowed-types,
.q-mediafile .mediafile-upload-zone .upload-content .size-limit {
  margin: 4px 0;
  color: #6c757d;
  font-size: 13px;
  font-style: italic;
}
.q-mediafile .files-list {
  margin-top: 24px;
}
.q-mediafile .files-list.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.q-mediafile .files-list.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.q-mediafile .files-list .file-item {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  transition: all 0.2s ease;
  position: relative;
}
.q-mediafile .files-list .file-item:hover {
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.q-mediafile .files-list .file-item.grid {
  padding: 16px;
  text-align: center;
}
.q-mediafile .files-list .file-item.grid .file-preview {
  margin-bottom: 12px;
}
.q-mediafile .files-list .file-item.grid .file-preview .file-thumbnail {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}
.q-mediafile .files-list .file-item.grid .file-preview .file-icon {
  font-size: 48px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 6px;
  opacity: 0.8;
}
.q-mediafile .files-list .file-item.grid .file-info .file-name {
  font-weight: 500;
  margin-bottom: 4px;
  word-break: break-word;
  font-size: 14px;
}
.q-mediafile .files-list .file-item.grid .file-info .file-name input {
  background: none;
  border: 1px dashed #ced4da;
  padding: 2px 4px;
  border-radius: 3px;
  width: 100%;
  font-size: 14px;
  text-align: center;
}
.q-mediafile .files-list .file-item.grid .file-info .file-name input:focus {
  outline: none;
  border-color: #007bff;
  border-style: solid;
}
.q-mediafile .files-list .file-item.grid .file-info .file-size {
  color: #6c757d;
  font-size: 12px;
  margin-bottom: 4px;
}
.q-mediafile .files-list .file-item.grid .file-info .file-metadata {
  color: #6c757d;
  font-size: 11px;
}
.q-mediafile .files-list .file-item.grid .file-info .file-metadata span {
  margin-right: 8px;
}
.q-mediafile .files-list .file-item.list {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.q-mediafile .files-list .file-item.list .file-preview {
  flex-shrink: 0;
}
.q-mediafile .files-list .file-item.list .file-preview .file-thumbnail {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
}
.q-mediafile .files-list .file-item.list .file-preview .file-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 24px;
  opacity: 0.8;
}
.q-mediafile .files-list .file-item.list .file-info {
  flex-grow: 1;
}
.q-mediafile .files-list .file-item.list .file-info .file-name {
  font-weight: 500;
  margin-bottom: 2px;
  font-size: 14px;
}
.q-mediafile .files-list .file-item.list .file-info .file-name input {
  background: none;
  border: 1px dashed #ced4da;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 14px;
}
.q-mediafile .files-list .file-item.list .file-info .file-name input:focus {
  outline: none;
  border-color: #007bff;
  border-style: solid;
}
.q-mediafile .files-list .file-item.list .file-info .file-size {
  color: #6c757d;
  font-size: 12px;
}
.q-mediafile .files-list .file-item.list .file-info .file-metadata {
  color: #6c757d;
  font-size: 11px;
  margin-top: 2px;
}
.q-mediafile .files-list .file-item.list .file-info .file-metadata span {
  margin-right: 12px;
}
.q-mediafile .files-list .file-item .file-checkbox {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.q-mediafile .files-list .file-item .upload-progress {
  margin-top: 8px;
}
.q-mediafile .files-list .file-item .upload-progress .progress-bar {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.q-mediafile .files-list .file-item .upload-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transition: width 0.3s ease;
}
.q-mediafile .files-list .file-item .upload-progress span {
  font-size: 12px;
  color: #6c757d;
}
.q-mediafile .files-list .file-item .file-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 6px;
  padding: 6px;
  background: #f8d7da;
  border-radius: 4px;
}
.q-mediafile .files-list .file-item .remove-file {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}
.q-mediafile .files-list .file-item .remove-file:hover {
  background: #dc3545;
  color: white;
}
.q-mediafile .camera-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.q-mediafile .camera-modal .camera-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.q-mediafile .camera-modal .camera-content .camera-video {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
}
.q-mediafile .camera-modal .camera-content .camera-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.q-mediafile .camera-modal .camera-content .camera-controls .capture-btn,
.q-mediafile .camera-modal .camera-content .camera-controls .cancel-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.q-mediafile .camera-modal .camera-content .camera-controls .capture-btn {
  background: #28a745;
  color: white;
}
.q-mediafile .camera-modal .camera-content .camera-controls .capture-btn:hover {
  background: #218838;
}
.q-mediafile .camera-modal .camera-content .camera-controls .cancel-btn {
  background: #6c757d;
  color: white;
}
.q-mediafile .camera-modal .camera-content .camera-controls .cancel-btn:hover {
  background: #545b62;
}
.q-mediafile .lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}
.q-mediafile .lightbox-modal .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}
.q-mediafile .lightbox-modal .lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.q-mediafile .lightbox-modal .lightbox-content .lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.2s ease;
}
.q-mediafile .lightbox-modal .lightbox-content .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .q-mediafile .mediafile-upload-zone {
    padding: 30px 15px;
  }
  .q-mediafile .mediafile-upload-zone .upload-content .upload-icon {
    font-size: 36px;
  }
  .q-mediafile .mediafile-upload-zone .upload-content h3 {
    font-size: 18px;
  }
  .q-mediafile .mediafile-upload-zone .upload-content .upload-actions {
    flex-direction: column;
    align-items: center;
  }
  .q-mediafile .mediafile-upload-zone .upload-content .upload-actions .url-import {
    flex-direction: column;
    width: 100%;
  }
  .q-mediafile .mediafile-upload-zone .upload-content .upload-actions .url-import .url-input {
    width: 100%;
    min-width: unset;
    margin-bottom: 8px;
  }
  .q-mediafile .files-list.grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  .q-mediafile .files-list .file-item.grid {
    padding: 12px;
  }
  .q-mediafile .files-list .file-item.grid .file-preview .file-thumbnail,
  .q-mediafile .files-list .file-item.grid .file-preview .file-icon {
    height: 100px;
  }
  .q-mediafile .files-list .file-item.grid .file-preview .file-icon {
    font-size: 36px;
  }
  .q-mediafile .files-list .file-item.list {
    padding: 10px 12px;
  }
  .q-mediafile .files-list .file-item.list .file-preview .file-thumbnail,
  .q-mediafile .files-list .file-item.list .file-preview .file-icon {
    width: 40px;
    height: 40px;
  }
  .q-mediafile .files-list .file-item.list .file-preview .file-icon {
    font-size: 20px;
  }
  .q-mediafile .camera-modal .camera-content .camera-video {
    max-height: 60vh;
  }
}
@media (max-width: 480px) {
  .q-mediafile .mediafile-upload-zone .upload-content .upload-actions .upload-btn {
    padding: 12px 20px;
    font-size: 16px;
    min-height: 48px;
  }
  .q-mediafile .files-list .file-item .remove-file {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .q-mediafile .files-list .file-item .file-checkbox {
    width: 24px;
    height: 24px;
  }
  .q-mediafile .batch-operations .batch-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
}

.q-temporal-universal .q-temporal-universal-grid {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.q-temporal-universal .q-temporal-labelgroup {
  display: block;
}

.form-progress-indicator .form-progress-indicator-meter {
  width: 100%;
  background: white;
  height: 10px;
}
.form-progress-indicator .form-progress-indicator-meter .form-progress-indicator-meter-bar {
  background: black;
  transition: width 0.2s ease-in-out;
}

.form-pages .form-pages-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: white;
}
.form-pages .form-pages-selector {
  user-select: none;
  display: flex;
  justify-content: center;
  overflow-x: scroll;
}
.form-pages .form-pages-selector button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  flex: 1;
  max-width: 130px;
  padding: 10px;
}
.form-pages .form-pages-selector button[aria-disabled=true]:not([aria-selected=true]) {
  opacity: 0.33;
}
.form-pages .form-pages-selector button[aria-selected=true] {
  background-color: black;
  color: white;
}
.form-page .form-page-header {
  text-align: center;
}

/*
.form-section {
  .form-section-header {
    padding-inline: 10px;
    --fg: black;
    --bg-top: transparent;
    --bg-bottom: transparent;
    color: var(--fg);
    background: linear-gradient(
      180deg,
      var(--bg-top) 0%,
      var(--bg-bottom) 100%
    );
    span.section-disclosure {
      // TODO we need to use svg for the disclosure triangle so that we can set the fill
      img {} // TODO just use a background!

      svg {
        fill: var(--fg);
      }
    }
    span.section-label {
    }
  }
  .form-section-questions {
    --questions-padding-inline: 20px;
    --questions-padding-top: 10px;
    --questions-padding-bottom: 10px;
    padding-inline: var(--questions-padding-inline);
    padding-top: var(--questions-padding-top);
    padding-bottom: var(--questions-padding-bottom);
  }
}
*/
.qstatic {
  --h1-size: calc(var(--font-size-input) * 1.6);
  --h2-size: calc(var(--font-size-input) * 1.2);
  --h3-size: calc(var(--font-size-input) * 1);
  --h4-size: calc(var(--font-size-input) * 0.9);
  --h5-size: calc(var(--font-size-input) * 0.8);
  --h6-size: calc(var(--font-size-input) * 0.7);
}
.qstatic h1 {
  font-size: var(--h1-size);
}
.qstatic h2 {
  font-size: var(--h2-size);
}
.qstatic h3 {
  font-size: var(--h3-size);
}
.qstatic h4 {
  font-size: var(--h4-size);
}
.qstatic h5 {
  font-size: var(--h5-size);
}
.qstatic h6 {
  font-size: var(--h6-size);
}
.qstatic img {
  max-width: 100%;
  height: auto;
}
.qstatic ol, .qstatic ul {
  padding-inline-start: 0;
  list-style-position: inside;
}
.qstatic table {
  border-collapse: collapse;
}
.qstatic table thead th {
  text-align: start;
}
.qbodyheight .segcontrol .segcontrol-seg[aria-selected=true] {
  background: black;
  color: white;
}

.super-uploader .su-sections .su-section {
  background-color: hsla(0, 0%, 0%, 0.05);
  box-shadow: inset 0 0 1px hsla(0, 0%, 0%, 0.8);
  border-radius: 10px;
  padding: 20px 20px;
}
.super-uploader .su-sections .su-section:not(:last-child) {
  margin-bottom: calc(var(--font-size-input) * 1);
}
.super-uploader .su-sections input[aria-hidden=true] {
  display: none;
}
.super-uploader .su-sections .su-section-inner .su-section-title {
  font-size: calc(var(--font-size-input) * 1);
  margin-bottom: calc(var(--font-size-input) * 0.3);
  pointer-events: none;
}
.super-uploader .su-sections .su-section-inner .su-section-description {
  font-size: calc(var(--font-size-input) * 0.8);
  margin-bottom: calc(var(--font-size-input) * 0.5);
  pointer-events: none;
}
.super-uploader .su-sections .su-section-inner .su-section-files {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.super-uploader .su-sections .su-section-inner .su-section-files .su-file {
  display: flex;
  flex-direction: column;
}
.super-uploader .su-sections .su-section-inner .su-section-files .su-file .su-file-thumbnail-progress {
  overflow: hidden;
  position: relative;
}
.super-uploader .su-sections .su-section-inner .su-section-files .su-file .su-file-thumbnail-progress .su-file-thumbnail {
  aspect-ratio: 3/4;
}
.super-uploader .su-sections .su-section-inner .su-section-files .su-file[data-type=file] .su-file-thumbnail-progress {
  border-radius: 10px;
}
.super-uploader .su-sections .su-section-inner .su-section-files .su-file[data-type=file] .su-file-thumbnail-progress .su-file-thumbnail {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: black;
}
.super-uploader .su-sections .su-section-inner .su-section-files .su-file[data-type=file] .su-file-thumbnail-progress .su-file-remove {
  position: absolute;
  top: 0;
  right: 0;
}
.super-uploader .su-sections .su-section-inner .su-section-files .su-file[data-type=dropzone] .su-file-thumbnail-progress .su-file-thumbnail {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%' height='100%' fill='none' rx='20px' ry='20px' stroke='hsl(220, 83%, 56%)' stroke-width='8' stroke-dasharray='6, 14' stroke-dashoffset='0' stroke-linecap='square'/%3E%3C/svg%3E");
  border-radius: 20px;
  margin: 10px;
}
.super-uploader .reusable-progress {
  height: 10px;
  background: black;
}
.super-uploader .reusable-progress .reusable-progress-inner {
  height: 10px;
}
.super-uploader .reusable-progress .reusable-progress-inner[data-state=error] {
  background-color: hsl(0, 50%, 50%);
}
.super-uploader .reusable-progress .reusable-progress-inner[data-state=paused] {
  background-color: hsl(60, 50%, 50%);
}
.super-uploader .reusable-progress .reusable-progress-inner[data-state=done] {
  background-color: hsl(120, 50%, 50%);
}
.super-uploader .reusable-progress .reusable-progress-inner[data-state=waiting] {
  background-image: linear-gradient(90deg, hsl(120, 80%, 60%) 0%, hsl(120, 50%, 50%) 50%, hsl(120, 80%, 60%) 100%);
  /* 2. Set a fixed background size (e.g., 100px wide, 100% height). 
        This is what prevents the stretch! */
  background-size: 100px 100%;
  /* 3. Apply the animation */
  animation: strobe 1.5s linear infinite;
}
@keyframes strobe {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}

#exform1 {
  height: 180px;
  background: linear-gradient(360deg, #FFFFFF 0%, hsl(195, 100%, 94%) 100%);
}
#exform1 .exf-header, #exform1 .exf-body {
  font-size: 25px;
  line-height: 30px;
  font-size: 18px;
}
#exform1 .exf-subheader {
  background-color: hsl(225, 100%, 20%);
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  margin-top: 10px;
}
#exform1 .exf-header {
  padding-top: 18px;
  padding-inline: 20px;
  font-weight: 400;
}
#exform1 .exf-header h1 {
  font-style: normal;
  font-weight: 510;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: hsl(225, 100%, 25%);
  padding: 0;
  margin: 0;
  text-align: center;
  padding-bottom: 10px;
}
#exform1 .exf-nav {
  padding-inline: 20px;
}
#exform1 .exf-nav .segcontrol {
  user-select: none;
  display: flex;
}
#exform1 .exf-nav .segcontrol .segcontrol-seg {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  flex: 1;
  background: hsla(195, 100%, 62%, 0.19);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding-block: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: hsl(225, 100%, 25%);
  font-weight: 400;
}
#exform1 .exf-nav .segcontrol .segcontrol-seg[aria-selected=true] {
  background: hsl(225, 100%, 25%);
  color: white;
}
#exform1 .exf-nav .segcontrol .segcontrol-seg:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
#exform1 .exf-nav .segcontrol .segcontrol-seg:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#exform1 .exf-description, #exform1 .exf-body, #exform1 .exf-bottom-description {
  padding-inline: 20px;
  font-size: 20px;
  padding-block: 10px;
}
#exform1 .exf-description p, #exform1 .exf-description ul, #exform1 .exf-description ol, #exform1 .exf-description li, #exform1 .exf-description h2, #exform1 .exf-body p, #exform1 .exf-body ul, #exform1 .exf-body ol, #exform1 .exf-body li, #exform1 .exf-body h2, #exform1 .exf-bottom-description p, #exform1 .exf-bottom-description ul, #exform1 .exf-bottom-description ol, #exform1 .exf-bottom-description li, #exform1 .exf-bottom-description h2 {
  margin: 0;
  line-height: 1.15;
  font-size: inherit;
  font-weight: inherit;
  margin-block: 10px;
}
#exform1 .exf-description p :first-child, #exform1 .exf-description ul :first-child, #exform1 .exf-description ol :first-child, #exform1 .exf-description li :first-child, #exform1 .exf-description h2 :first-child, #exform1 .exf-body p :first-child, #exform1 .exf-body ul :first-child, #exform1 .exf-body ol :first-child, #exform1 .exf-body li :first-child, #exform1 .exf-body h2 :first-child, #exform1 .exf-bottom-description p :first-child, #exform1 .exf-bottom-description ul :first-child, #exform1 .exf-bottom-description ol :first-child, #exform1 .exf-bottom-description li :first-child, #exform1 .exf-bottom-description h2 :first-child {
  margin-block-start: 0;
}
#exform1 .exf-description p :last-child, #exform1 .exf-description ul :last-child, #exform1 .exf-description ol :last-child, #exform1 .exf-description li :last-child, #exform1 .exf-description h2 :last-child, #exform1 .exf-body p :last-child, #exform1 .exf-body ul :last-child, #exform1 .exf-body ol :last-child, #exform1 .exf-body li :last-child, #exform1 .exf-body h2 :last-child, #exform1 .exf-bottom-description p :last-child, #exform1 .exf-bottom-description ul :last-child, #exform1 .exf-bottom-description ol :last-child, #exform1 .exf-bottom-description li :last-child, #exform1 .exf-bottom-description h2 :last-child {
  margin-block-end: 0;
}
#exform1 .exf-description b, #exform1 .exf-description strong, #exform1 .exf-body b, #exform1 .exf-body strong, #exform1 .exf-bottom-description b, #exform1 .exf-bottom-description strong {
  font-weight: 600;
  color: hsl(225, 100%, 25%);
}
#exform1 .exf-description h2, #exform1 .exf-body h2, #exform1 .exf-bottom-description h2 {
  color: hsl(225, 100%, 25%);
  font-weight: 500;
  font-size: 28px;
}
#exform1 .exf-form {
  padding-top: 10px;
  padding-inline: 20px;
}
#exform1 .q-button-submit {
  text-align: center;
  margin-top: 10px;
  min-height: 50vh;
}
#exform1 .q-button-submit button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  border: 1px solid hsl(225, 100%, 25%);
  background-color: hsl(225, 100%, 37%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  outline: 2px solid hsl(225, 100%, 37%);
}

/*# sourceMappingURL=form.css.map */.datatable {
  width: 100%;
  font-family: system-ui, -apple-system, sans-serif;
}

.datatable-search input[type=text] {
  border-bottom-style: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.search-input {
  width: 100%;
  max-width: 300px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-left-style: none;
  border-radius: 0;
  font-size: 14px;
}
.search-input:focus {
  outline: none;
  background-color: hsl(209, 100%, 98%);
}

.datatable-container {
  position: relative;
  border-radius: 4px;
  background: white;
  position: relative;
  overflow: hidden;
  outline: none;
}
.datatable-container:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.datatable-header {
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}

.datatable-scroll {
  position: relative;
  overflow-y: auto;
  overflow-x: auto;
}

.grid-cell {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.column-header {
  background: #f5f5f5;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  position: absolute;
  top: 0;
  cursor: grab;
}
.column-header.has-left-border {
  border-left: 1px solid #e0e0e0;
}
.column-header.sortable {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.column-header.sortable:hover:not(.dragging) {
  background: #eee;
}
.column-header.selected {
  background: #b3d9ff !important;
  border: 1px solid #0066cc;
  border-top-color: transparent;
}
.column-header.dragging {
  opacity: 0.5;
  cursor: grabbing;
  background: #ddd;
  transform: scale(1.02);
  transition: transform 0.1s ease;
}

.data-cell {
  position: absolute;
  background: white;
  border: 1px solid transparent;
  border-top-color: #e0e0e0;
  border-left-color: #e0e0e0;
  cursor: cell;
}
.data-cell.row-odd {
  background: #f9f9f9;
}
.data-cell.row-hover {
  background: #f0f0f0;
}
.data-cell.selected {
  border-top-color: #0066cc;
  border-left-color: #0066cc;
}
.data-cell.selected-up {
  border-top-color: #0066cc;
}
.data-cell.selected-left {
  border-left-color: #0066cc;
}
.data-cell.selected {
  background: #e6f3ff !important;
}
.data-cell.anchor {
  background-color: #b3d9ff !important;
}
.data-cell.active {
  background: #b3d9ff !important;
  outline: none;
  position: relative;
}

.row-header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.row-header:hover {
  background: #eee;
}
.row-header.selected {
  background: #b3d9ff !important;
  border: 2px solid #0066cc;
  color: #0066cc;
  font-weight: 600;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  width: 100%;
}

.column-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 1px 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  opacity: 0.6;
  line-height: 1;
}

.resize-handle {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  cursor: col-resize;
}

.sort-icon {
  margin-left: 0.5rem;
  font-size: 12px;
  opacity: 0.6;
  flex-shrink: 0;
}

.drop-zone-indicator {
  background-color: #0066cc;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 102, 204, 0.5);
  position: absolute;
  top: 0;
  width: 4;
  z-index: 3;
  background-color: #0066cc;
}

.datatable-loading-overlay {
  position: "absolute";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: "rgba(255, 255, 255, 0.8)";
  display: "flex";
  align-items: "center";
  justify-content: "center";
  z-index: 1000;
}

.drag-preview {
  animation: dragPreviewPulse 0.3s ease-in-out;
  background-color: #f5f5f5;
  border: 2px solid #0066cc;
  border-radius: 4px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes dragPreviewPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}
body.column-dragging {
  cursor: grabbing !important;
}
body.column-dragging * {
  cursor: grabbing !important;
}

.column-menu-dropdown,
.data-cell-menu-dropdown {
  position: fixed;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  min-width: 150px;
  padding: 4px 0;
}

.menu-item {
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.1s ease;
}
.menu-item:hover {
  background-color: #f5f5f5;
}
.menu-item:focus {
  outline: none;
  background-color: #f0f0f0;
}
.menu-item:active {
  background-color: #e8e8e8;
}

.menu-divider {
  height: 1px;
  background-color: #eee;
  margin: 4px 0;
}

.datatable-footer {
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

.datatable-footer-aggregates {
  padding: 8px 16px;
  border-bottom: 1px solid #e0e0e0;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.datatable-footer-aggregates .aggregates-display {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #555;
}
.datatable-footer-aggregates .aggregate-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.datatable-footer-aggregates .aggregate-item .aggregate-label {
  font-weight: 500;
  color: #666;
}
.datatable-footer-aggregates .aggregate-item .aggregate-value {
  font-weight: 600;
  color: #333;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
}
.datatable-footer-aggregates .aggregate-separator {
  color: #ccc;
  font-weight: normal;
  margin: 0 2px;
}
.datatable-footer-aggregates .no-aggregates {
  color: #999;
  font-size: 13px;
  font-style: italic;
}

@media (max-width: 768px) {
  .search-input {
    max-width: 100%;
  }
  .grid-cell {
    padding: 0.5rem;
    font-size: 14px;
  }
  .datatable-footer-aggregates {
    padding: 6px 12px;
  }
  .datatable-footer-aggregates .aggregates-display {
    font-size: 12px;
    gap: 6px;
  }
  .datatable-footer-aggregates .aggregate-item {
    gap: 3px;
  }
}
.datatable-footer-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #666;
}

.datatable-pagination-select {
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.datatable-pagination-button {
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}/*# sourceMappingURL=datatable.css.map */*, ::before, ::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

ul[class] {
  list-style-type: none;
  padding: 0;
}

@keyframes scroll-shadow-top {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scroll-shadow-bottom {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
a.bare {
  text-decoration: none;
  color: inherit;
}

#author-app {
  position: fixed;
  inset: 0;
}

header.page-header {
  background: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 20%);
  font-weight: 500;
  font-size: 20px;
  padding-inline: 30px;
  padding-block: 5px;
}
header.page-header .page-header-title-bottom {
  font-size: 14px;
  font-weight: 400;
  margin-top: -3px;
}
header.page-header.border-bottom {
  border-bottom: 1px solid hsl(0, 0%, 90%);
}
header.page-header .page-header-actions {
  margin-top: 7px;
  margin-bottom: 5px;
  display: flex;
}
header.page-header .page-header-actions .page-header-action-group {
  display: flex;
  gap: 5px;
}
header.page-header .page-header-actions button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  border-radius: 4px;
  border: 1px solid hsl(0, 0%, 80%);
  padding: 2px 10px;
  color: hsl(0, 0%, 20%);
}
header.page-header .page-header-actions button:hover {
  border-color: hsl(0, 0%, 0%);
}
header.page-header .page-header-actions-editor textarea {
  width: 100%;
  height: 200px;
  border: 1px solid hsl(0, 0%, 80%);
  resize: vertical;
  min-height: 50px;
}

.pad-sides {
  padding-inline: 30px;
}

.fill-relative {
  position: fixed;
  inset: 0;
}

.centered {
  margin-inline: auto;
  max-width: 800px;
}

.split {
  display: flex;
}
.split.split-lr {
  flex-direction: row;
}
.split.split-ud {
  flex-direction: column;
}
.split > .split-fixed {
  flex: none;
}
.split > .split-vari {
  flex: 1;
}

.datatable-bordered {
  border: 1px solid black;
}

.form-questions-editor-selector {
  display: flex;
  background-color: hsl(0, 0%, 96%);
}
.form-questions-editor-selector a {
  box-sizing: content-box;
  flex: 1;
  text-align: center;
  text-decoration: none;
  max-width: 200px;
  font-weight: 500;
  color: hsl(0, 0%, 20%);
  padding-block: 5px;
  border: 1px solid transparent;
  border-bottom-color: hsl(0, 0%, 90%);
}
.form-questions-editor-selector a:hover {
  background-color: hsl(0, 0%, 98%);
}
.form-questions-editor-selector a[aria-selected=true] {
  border-color: transparent hsl(0, 0%, 90%) transparent hsl(0, 0%, 90%);
  background-color: white;
  color: black;
}
.form-questions-editor-selector a[aria-selected=true]:first-child {
  border-left-color: transparent;
}

.questions-edit-preview {
  background-color: black;
}

.questions-edit-sim {
  margin: 10px;
  width: 6.5cm;
  height: 14.1cm;
  background-color: white;
}

.qe {
  user-select: none;
}

.qe-item {
  --indent: 0;
}
.qe-item .qe-item-topline {
  display: flex;
  border: 1px transparent none;
  border-style: solid none solid none;
}
.qe-item .qe-item-topline .qe-item-topline-spacer-left {
  --indent: inherit;
  margin-left: 20px;
  width: 3px;
  min-height: 100%;
  background-color: transparent;
  margin-right: calc(var(--indent) * 20px);
  margin-block: -1px;
}
.qe-item .qe-item-topline button.qe-item-disclosure-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
}
.qe-item .qe-item-topline .qe-item-leaf-handle, .qe-item .qe-item-topline button.qe-item-disclosure-button {
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 27px;
  min-width: 12px;
  height: 100%;
}
.qe-item .qe-item-topline button.qe-item-disclosure-button svg {
  transition: transform 0.2s linear;
}
.qe-item .qe-item-topline button.qe-item-disclosure-button[aria-expanded=true] svg {
  transform: rotate(90deg);
}
.qe-item .qe-item-topline button.qe-item-disclosure-button, .qe-item .qe-item-topline span.qe-item-leaf-handle {
  flex: none;
  user-select: none;
  color: #585858;
  font-size: 30px;
  line-height: 1;
}
.qe-item .qe-item-details[aria-expanded=false] {
  display: none;
}

.qe-item[aria-selected=true] .qe-item-topline {
  background: #cde5ff;
  border-top-color: #619aec;
  border-bottom-color: #619aec;
  box-sizing: content-box;
}
.qe-item[aria-selected=true] .qe-item-topline:has(input[type=text]:focus) {
  background: white;
  border-color: transparent;
}
.qe-item[aria-selected=true] .qe-item-topline:has(input[type=text]:focus) .qe-item-topline-spacer-left {
  background-color: #b7d9ff;
}

.qe-spaninput {
  flex: 1;
  position: relative;
  display: block;
}
.qe-spaninput input[type=text], .qe-spaninput span.qe-spaninput-span {
  display: inline;
  padding: 0;
  margin: 0;
  text-indent: 0;
  border: none;
  background: none;
  outline: none;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1;
}
.qe-spaninput span.qe-spaninput-span {
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  height: fit-content;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qe-spaninput span.flowroot {
  box-sizing: content-box;
  line-height: normal;
  display: flow-root;
  -webkit-rtl-ordering: logical;
}
.qe-spaninput input[type=text] {
  border-radius: 0;
  color: rgba(0, 0, 0, 0.001);
  caret-color: black;
}
.qe-spaninput input[type=text]:focus {
  background: white;
}

.qe-item-enabled-checkbox {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 1px;
  border: 1px solid #7f7f7f;
  align-self: center;
}
.sidebar {
  background: hsl(0, 0%, 96%);
  height: 100%;
  user-select: none;
  border-right: 1px solid hsl(0, 0%, 90%);
  padding-inline: 14px;
  overflow-y: scroll;
}
.sidebar .sidebar-item-leaf, .sidebar .sidebar-branch-heading {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 1px;
  text-decoration: none;
  color: inherit;
  display: block;
  padding-inline: 6px;
  border-radius: 4px;
}
.sidebar .sidebar-item-leaf:hover:where(a), .sidebar .sidebar-branch-heading:hover:where(a) {
  background: hsl(200, 0%, 90%);
}
.sidebar .sidebar-item-leaf[data-partial-selection=true], .sidebar .sidebar-branch-heading[data-partial-selection=true] {
  background: hsl(210, 60%, 90%);
  color: black;
}
.sidebar .sidebar-item-leaf[aria-selected=true], .sidebar .sidebar-branch-heading[aria-selected=true] {
  background: hsl(210, 100%, 30%);
  color: white;
  cursor: default;
}
.sidebar-branch-children {
  padding-inline-start: 15px;
}

.page-upgrade .plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.code-editor-outer .code-editor {
  width: 600px;
  height: 600px;
}
.code-editor-outer .code-editor-textarea {
  width: 100%;
  height: 100%;
  font-family: "Monaco", monospace;
  padding: 10px;
  background-color: #141414;
  color: white;
  border: none;
  height: 500px;
}

.filter-bar-chip {
  font-size: 13px;
  margin-right: 10px;
  display: inline-block;
  user-select: none;
  font-weight: 400;
}
.filter-bar-chip span {
  display: inline-block;
  line-height: 1.75;
  padding-inline: 5px;
  border: 1px solid hsl(0, 0%, 80%);
}
.filter-bar-chip .-column {
  background-color: white;
  border-right-style: none;
}
.filter-bar-chip .-rel {
  background-color: white;
  border-right-style: none;
}
.filter-bar-chip .-value {
  background-color: white;
  border-right-style: none;
}
.filter-bar-chip .-close {
  cursor: default;
  background-color: white;
  padding-inline: 7px;
}
.filter-bar-chip .-close:hover {
  background-color: hsla(200, 0%, 0%, 0.01);
}
.filter-bar-chip :first-child {
  border-radius: 5px 0 0 5px;
}
.filter-bar-chip :last-child {
  border-radius: 0 5px 5px 0;
}

.localization-add-pane {
  padding-inline: 10px;
}
.localization-add-pane input[type=text] {
  padding-inline: 10px;
  padding-block: 5px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 black;
}

.split-vari:has(.page-app) {
  display: flex;
  flex-direction: column;
}

.page-app {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.des-outer {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.des {
  flex: 1;
  position: relative;
  background-color: hsl(215, 100%, 96%);
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAABhJREFUKM9jYCAO8DKMKhxVOMwV8hIFbQGkUAIslu8SnQAAAABJRU5ErkJggg==");
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;
  image-rendering: pixelated;
  user-select: none;
  flex-direction: column;
  display: flex;
}

.des-header-outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.des-header {
  margin: 0 auto;
  background: hsla(0, 0%, 100%, 0.5);
  backdrop-filter: blur(0.5px);
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 0 5px 0 hsla(0, 0%, 0%, 0.2);
  border-radius: 5px;
  padding: 5px;
  padding-top: 0;
  margin-top: 10px;
}
.des-header .des-titlebar .des-titlebar-title {
  text-align: center;
}
.des-canvas {
  flex: 1;
  position: relative;
}
.des-canvas .des-entity-links-view {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.des-entity {
  background-color: white;
  border-radius: 10px;
  outline: hsl(0, 0%, 0%) 1px solid;
}
.des-entity[aria-selected=true] {
  outline: hsl(210, 100%, 50%) 2px solid;
}
.des-entity {
  position: relative;
}
.des-entity[data-movable=true] {
  top: 10px;
  left: 50px;
}
.des-entity:not([data-movable=true]) {
  margin-block: 10px;
}
.des-entity {
  width: fit-content;
  transition: transform 0.3s ease-in-out;
}
.des-entity .des-entity-header {
  text-align: center;
  display: flex;
}
.des-entity .des-entity-header .des-entity-type {
  font-weight: 500;
  font-size: 0.9em;
  align-self: center;
}
.des-entity .des-entity-header .des-entity-type span {
  background: hsl(30, 90%, 90%);
  padding-inline: 0.5em;
}
.des-entity .des-entity-header .des-entity-title {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: -3px;
  flex: 1;
}
.des-entity .des-entity-header button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  align-self: center;
}
.des-entity .des-entity-header button:hover {
  background-color: hsla(0, 0%, 0%, 0.12);
}
.des-entity .des-entity-header {
  padding-inline: 2px;
}
.des-entity .des-entity-main {
  padding-top: 0;
}
.des-entity .des-entity-lower-prompt {
  position: relative;
  display: flex;
  flex-direction: row;
}
.des-entity .des-entity-lower-prompt textarea {
  flex: 1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  border: 1px solid hsl(0, 0%, 60%);
  width: calc(100% - 10px);
  margin-inline: 5px;
  margin-bottom: 5px;
  min-height: 30px;
  height: 30px;
  border-radius: 15px;
  padding-inline-end: 30px;
  padding-inline-start: 13px;
  resize: vertical;
  display: block;
}
.des-entity .des-entity-lower-prompt button.des-entity-prompt-submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  background-color: black;
  color: white;
  display: block;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 1;
}

.des-entity[data-is-rotated=true] {
  transform: rotateY(180deg);
}

.des-entity--component .des-entity--component--iframe {
  border: none;
  user-select: none;
  pointer-events: none;
}
.des-entity--component .des-entity--component--route {
  text-align: center;
}
.des-entity--component .des-entity--component--route .-param {
  background: hsl(0, 100%, 90%);
}

.des-entity--action .des-entity--action--prompt {
  background-color: hsl(45, 100%, 92%);
  border-radius: 5px;
  margin: 10px;
}
.des-entity--action .des-entity--action--prompt pre, .des-entity--action .des-entity--action--prompt textarea {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 30ch;
  font-size: 1rem;
  padding: 10px;
  border: none;
  margin: 0;
  line-height: 1.5;
  display: block;
}
.des-entity--action .des-entity--action--prompt textarea {
  resize: vertical;
}
.des-entity--action .des-entity--action--prompt pre {
  white-space: pre-wrap;
}
.des-entity--table .des-entity--table--column > .-top > .-datatype {
  background: hsl(0, 0%, 90%);
  font-weight: 500;
  font-size: 12.6px;
  line-height: 14px;
  vertical-align: middle;
  border-radius: 4px;
  padding-inline: 2.8px;
}
.des-entity--table .des-entity--table--column > .-top > .-name {
  font-size: 14px;
  line-height: 14px;
}
.des-entity-section .des-entity-section-header {
  border-top: 1px solid hsla(0, 0%, 0%, 0.3);
  border-bottom: 1px solid transparent;
  display: flex;
  user-select: none;
}
.des-entity-section .des-entity-section-header[aria-expanded=true] {
  border-bottom-color: hsla(0, 0%, 0%, 0.1);
}
.des-entity-section .des-entity-section-header {
  padding-inline-start: 4px;
  gap: 4px;
}
.des-entity-section .des-entity-section-header .des-entity-section-toggle {
  align-self: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA2BAMAAABdMCY7AAAAGFBMVEVwcHBwcHAAAABwcHBwcHBwcHBwcHBwcHD7lWMmAAAACHRSTlOQEAD/3yDvcPpEzCIAAACESURBVHgBYmBUAjROBzUQwzAURPdTWQoOkpAwfwbVXCeX3+OTpmoT28/v3IdmX5q8RCoiNU1MTiFSE6mJ1ERqmphITaQmUhOpidQ0MZGaSE2kJlITqWliIhWRNnRu8fptPjXFb5OJUhz0ucWlbTMAKYbp3GIwtxnyFAtzbrF82yxyLP8PZUCmJ67m+YcAAAAASUVORK5CYII=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
}
.des-entity-section .des-entity-section-header .des-entity-section-toggle[aria-expanded=true] {
  transform: rotate(90deg);
}
.des-entity-section .des-entity-section-header .des-entity-section-title {
  flex: 1;
  font-weight: 600;
}
.des-action .prompt {
  position: relative;
  padding: 12px 16px 12px 24px;
  border: 1px solid #ccc;
  width: fit-content;
  max-width: 200px;
  background: lightblue;
  --arrow-in: 16px; /* left notch depth */
  --arrow-out: 16px; /* right arrow depth */
  position: relative;
  padding-block: 12px;
  padding-inline: calc(16px + var(--arrow-out)) calc(16px + var(--arrow-in));
  border: 1px solid #ccc;
  clip-path: polygon(0 0, calc(100% - var(--arrow-out)) 0, 100% 50%, calc(100% - var(--arrow-out)) 100%, 0 100%, var(--arrow-in) 50%);
}

.des-security-popover {
  position: absolute;
  right: -30px;
  top: 30px;
  background: white;
  box-shadow: 0 0px 0.5px 0 hsla(0, 0%, 0%, 0.18), 0 3px 8px 0 hsla(0, 0%, 0%, 0.1), 0 1px 3px 0 hsla(0, 0%, 0%, 0.1);
  z-index: 2;
}
.des-security-popover .des-security-popover-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.des-security-popover .des-security-popover-option {
  margin-inline: 10px;
  border-radius: 10px;
}
.des-security-popover .des-security-popover-option[aria-selected=true] {
  background: magenta;
  color: white;
}

.des-color-picker {
  border: 1px solid black;
  border-radius: 4px;
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
}
.des-color-picker input[type=color] {
  appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.des-chat {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
}
.des-chat .-transcript {
  padding: 10px;
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
}
.des-chat .-transcript .-message .-message-actions {
  user-select: none;
}
@media (hover: hover) {
  .des-chat .-transcript .-message .-message-actions {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .des-chat .-transcript .-message:hover .-message-actions {
    opacity: 1;
  }
}
.des-chat .-transcript .-message[data-sender=self] .-message-body {
  margin-left: 20px;
  background-color: hsl(0, 0%, 90%);
  border-radius: 18px;
  padding-inline: 16px;
  padding-block: 12px;
  font-size: 16px;
  line-height: 24px;
  outline: 1px solid hsl(0, 0%, 50%);
}
.des-chat .-transcript .-message[data-sender=self] .-message-actions {
  text-align: right;
}
.des-chat .-transcript .-message[data-sender=bot] .-message-body {
  margin-right: 20px;
}
.des-chat .-inputs {
  position: relative;
  padding-inline: 10px;
  padding-block: 10px;
}
.des-chat .-inputs textarea.-prompt-input {
  padding-left: 12px;
  padding-right: 44px;
  padding-block: 8px;
  border-radius: 10px;
  overflow: hidden;
  resize: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 100%;
  border: none;
  margin: 0;
  display: block;
  outline: none;
  font-size: 16px;
  background-color: hsl(0, 0%, 95%);
}
.des-chat .-inputs textarea.-prompt-input:focus {
  background-color: hsl(0, 0%, 90%);
  outline: 1px solid hsl(0, 0%, 50%);
}
.des-chat .-inputs .-submit-prompt {
  top: 18px;
  right: 22px;
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  background-color: black;
  color: white;
  border-radius: 100px;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
  width: 30px;
  height: 30px;
}
.des-chat .-message-body pre {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 21px;
  white-space: pre-wrap;
  background-color: hsla(0, 0%, 0%, 0.05);
  border-radius: 12px;
  padding-inline: 10px;
  padding-block: 10px;
}

.des-chat-plan {
  margin-block: 5px;
  border: 1px #132ba2 solid;
  border-radius: 7px;
  overflow: hidden;
  font-size: 90%;
}
.des-chat-plan .des-chat-plan-inner1 {
  border: 2px white solid;
}
.des-chat-plan .des-chat-plan-inner1 .des-chat-plan-inner2 {
  border: 2px #132ba2 solid;
  padding: 5px 10px;
  border-radius: 5px;
}
.des-chat-plan .des-chat-plan-header {
  text-align: center;
  font-size: initial;
  color: black;
  font-weight: 600;
  margin-block: -2px;
}

.des-minimap {
  position: absolute;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
  border-radius: 5px;
  backdrop-filter: blur(2px);
  background-color: hsla(0, 0%, 0%, 0.5);
}
.des-minimap:hover, .des-minimap:active {
  background-color: hsla(0, 0%, 0%, 0.6);
}

.des-rightbar {
  min-width: 200px;
  width: fit-content;
}

.des-panel-section > .-header {
  user-select: none;
  text-align: center;
  background: gray;
}
.ds-layer {
  position: relative;
  user-select: none;
  overflow: hidden;
  box-sizing: border-box;
}
.ds-layer[aria-selected=true] {
  outline: 1px solid hsl(210, 100%, 50%);
}
.ds-layer {
  width: fit-content;
  height: fit-content;
}

.ds-layer-item {
  --nesting-level: 0;
  padding-left: calc(var(--nesting-level) * 20px);
}
.ds-layer-item[aria-selected=true] {
  background-color: lightblue;
}

.ds-layer--frame {
  position: relative;
}

.ds-layer--frame-inner {
  position: relative;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.ds-vector-selection-rectangle {
  position: absolute;
  border: 1px solid #007acc;
  background-color: rgba(0, 122, 204, 0.1);
  pointer-events: "none";
  z-index: 1000;
}

.outliner-view {
  user-select: none;
}
.outliner-view table {
  width: 100%;
  border-collapse: collapse;
}
.outliner-view tr.ov-row[aria-selected=true] {
  background-color: hsl(210, 100%, 80%);
}
.outliner-view tr.ov-row[data-anchor=true] {
  background-color: hsl(150, 100%, 80%);
}
.outliner-view tr.ov-row td.ov-col[data-editing=true] {
  background-color: hsl(0, 100%, 80%);
}
.outliner-view tr.ov-row td.ov-col[data-outlinecolumn=true] {
  padding-left: calc(var(--level) * 15px);
}
.outliner-view tr.ov-row td.ov-col[data-outlinecolumn=true] button.ov-disclosure {
  transition: transform 0.3s ease;
}
.outliner-view tr.ov-row td.ov-col[data-outlinecolumn=true] button.ov-disclosure[aria-expanded=true] {
  transform: rotate(90deg);
}
.outliner-view tr.ov-row td.ov-col[data-outlinecolumn=true] button.ov-disclosure[aria-hidden=true] {
  visibility: hidden;
  pointer-events: none;
}
.outliner-view .ov-edit-cell {
  box-sizing: border-box;
  appearance: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-family: inherit;
}

.outliner-view .ov-row[data-dragging=true]:hover {
  background: none !important;
}
.outliner-view .ov-row[data-droptargetparent=true] {
  outline: 2px solid black;
  border-radius: 8px;
}
.outliner-view .drop-target-line {
  position: absolute;
  height: 2px;
  background-color: black;
  z-index: 1000;
  pointer-events: none;
  border-radius: 1px;
  right: 0;
  height: 2px;
  z-index: 1000;
  pointer-events: none;
}
.outliner-view .drop-target-line::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  outline: 2px solid black;
}
.outliner-view .drag-count-indicator {
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.outliner-view .outliner-view {
  position: relative;
}
.outliner-view .ov-rows {
  position: relative;
}

/*# sourceMappingURL=author.css.map */@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-VariableFont_opsz_wght-c8O0ljhh.ttf") format("truetype");
}
*, *::before, *::after {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* {
  zoom: reset;
}

.designer3 {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.designer3 > * {
  flex: 1;
}
.designer3 {
  position: relative;
}

.ds-main {
  display: flex;
  flex-direction: column;
}
.ds-main > * {
  flex: 1;
}
.ds-main {
  position: absolute;
  inset: 0;
  user-select: none;
}

.ds-toggle-button {
  position: absolute;
  top: 0;
  pointer-events: auto;
}
.ds-toggle-button[data-name=sidebar] {
  left: 0;
}
.ds-toggle-button[data-name=chat] {
  right: 0;
}

.ds-splitview-split[data-name=sidebar] + .ds-splitview-divider {
  opacity: 0;
}

.ds-splitview-split[data-name=main] {
  position: relative;
  pointer-events: none;
}

.ds-splitview-split[data-name=max] {
  position: relative;
}

.ds-main-placeholder {
  position: relative;
  visibility: hidden;
  pointer-events: none;
}

.ds-splitview-split {
  display: flex;
  flex-direction: column;
}
.ds-splitview-split > * {
  flex: 1;
}

.ds-sidebar {
  background-color: hsl(0, 0%, 100%);
  margin: 10px;
  margin-right: 3px;
  height: 100%;
  z-index: 5;
  border-radius: 20px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.ds-chat {
  background-color: white;
  z-index: 5;
}

.ds-viewport {
  display: flex;
  flex-direction: column;
}
.ds-viewport > * {
  flex: 1;
}
.ds-viewport {
  background-color: hsl(35, 22%, 95%);
}

.ds-world-background {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAABhJREFUKM9jYCAO8DKMKhxVOMwV8hIFbQGkUAIslu8SnQAAAABJRU5ErkJggg==");
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;
}

.ds-viewport-selection-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  image-rendering: pixelated;
}

.ds-world-lines-canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.ds-world-lines-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.ds-canvas3d {
  position: absolute;
  inset: 0;
  background-color: yellow;
}

.ds-entity-maximized {
  background: white;
}

.ds-entity-provisional {
  background-color: wheat;
}
.ds-entity-provisional > .-provisional-prompt {
  display: flex;
  flex-direction: column;
  padding: 5px;
}
.ds-entity-provisional > .-provisional-prompt textarea {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  resize: none;
  display: block;
  font-size: 1rem;
}

.ds-entity-general > .-header .-titlebar, .ds-entity-provisional > .-header .-titlebar {
  display: flex;
}
.ds-entity-general > .-header .-titlebar > .-title, .ds-entity-provisional > .-header .-titlebar > .-title {
  user-select: none;
  flex: 1;
}
.ds-entity-general > .-header .-titlebar > .-actions button, .ds-entity-provisional > .-header .-titlebar > .-actions button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 3px;
}
.ds-entity-general > .-header .-titlebar > .-actions button:hover, .ds-entity-provisional > .-header .-titlebar > .-actions button:hover {
  background-color: hsla(0, 0%, 0%, 0.2);
}
.ds-entity-general > .-header .-titlebar > .-actions button[data-icon=code], .ds-entity-provisional > .-header .-titlebar > .-actions button[data-icon=code] {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='Layer_1'%20data-name='Layer%201'%20viewBox='0%200%2024%2024'%20width='512'%20height='512'%3e%3cpath%20d='M14.831,17c-.256,0-.512-.098-.707-.293-.391-.391-.391-1.023,0-1.414l2.583-2.583c.188-.189,.293-.44,.293-.708s-.104-.518-.293-.707l-2.583-2.584c-.391-.391-.391-1.024,0-1.414,.391-.391,1.023-.391,1.414,0l2.583,2.583c.566,.566,.879,1.32,.879,2.121s-.312,1.555-.879,2.122l-2.583,2.583c-.195,.195-.451,.293-.707,.293Zm-4.955-.298c.391-.391,.391-1.023,0-1.414l-2.583-2.583c-.189-.189-.293-.44-.293-.708s.104-.518,.293-.707l2.583-2.583c.391-.391,.391-1.023,0-1.414s-1.023-.391-1.414,0l-2.583,2.583c-.567,.567-.879,1.32-.879,2.122s.312,1.555,.879,2.122l2.583,2.583c.195,.195,.451,.293,.707,.293s.512-.098,.707-.293Zm14.124,2.298V5c0-2.757-2.243-5-5-5H5C2.243,0,0,2.243,0,5v14c0,2.757,2.243,5,5,5h14c2.757,0,5-2.243,5-5ZM19,2c1.654,0,3,1.346,3,3v14c0,1.654-1.346,3-3,3H5c-1.654,0-3-1.346-3-3V5c0-1.654,1.346-3,3-3h14Z'/%3e%3c/svg%3e");
}
.ds-entity-general > .-header .-titlebar > .-actions button[data-icon=style], .ds-entity-provisional > .-header .-titlebar > .-actions button[data-icon=style] {
  background-image: url("data:image/svg+xml,%3csvg%20id='Layer_1'%20height='512'%20viewBox='0%200%2024%2024'%20width='512'%20xmlns='http://www.w3.org/2000/svg'%20data-name='Layer%201'%3e%3cpath%20d='m23.1.9a3.139%203.139%200%200%200%20-4.33%200l-11.207%2011.2a5.548%205.548%200%200%200%20-1.058-.1%205.457%205.457%200%200%200%20-3.885%201.609c-1.92%201.924-2.434%208.019-2.52%209.221l-.076%201.146%201.145-.08c1.2-.082%207.3-.593%209.222-2.516a5.494%205.494%200%200%200%201.5-4.941l11.209-11.209a3.068%203.068%200%200%200%200-4.33zm-14.123%2019.066c-.93.929-4.267%201.56-6.774%201.83.283-2.6.943-5.884%201.831-6.773a3.5%203.5%200%200%201%204.943%204.943zm12.711-16.15-10.621%2010.622a5.378%205.378%200%200%200%20-1.5-1.508l10.617-10.618a1.086%201.086%200%200%201%201.5%200%201.062%201.062%200%200%201%20.004%201.504z'/%3e%3c/svg%3e");
}
.ds-entity-general > .-header .-titlebar > .-actions button[data-icon=security], .ds-entity-provisional > .-header .-titlebar > .-actions button[data-icon=security] {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='Outline'%20viewBox='0%200%2024%2024'%20width='512'%20height='512'%3e%3cpath%20d='M17,8H7V7a5,5,0,0,1,9.375-2.422,1,1,0,0,0,1.749-.971A7,7,0,0,0,5,7V8.424A5,5,0,0,0,2,13v6a5.006,5.006,0,0,0,5,5H17a5.006,5.006,0,0,0,5-5V13A5.006,5.006,0,0,0,17,8Zm3,11a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V13a3,3,0,0,1,3-3H17a3,3,0,0,1,3,3Z'/%3e%3cpath%20d='M12,14a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V15A1,1,0,0,0,12,14Z'/%3e%3c/svg%3e");
}

.ds-entity {
  width: fit-content;
}

.ds-maximized-views {
  display: flex;
  position: absolute;
  inset: 0;
  padding: 15px;
  gap: 15px;
  backdrop-filter: blur(10px);
}

.ds-layer-gradient {
  position: absolute;
}

.ds-worldobject.ds-entity {
  outline: none;
}
.ds-worldobject.ds-entity.dragging {
  cursor: grabbing;
}
.ds-worldobject.ds-entity > .-background-shape, .ds-worldobject.ds-entity > .-foreground-shape {
  pointer-events: none;
  position: absolute;
}
.ds-worldobject.ds-entity > .-foreground-shape {
  z-index: 1;
}
.ds-worldobject.ds-entity > .-foreground-shape > svg {
  overflow: visible;
}
.ds-worldobject.ds-entity > .-foreground-shape > svg > line, .ds-worldobject.ds-entity > .-foreground-shape > svg > path, .ds-worldobject.ds-entity > .-foreground-shape > svg > rect {
  stroke: black;
  stroke-width: 1px;
}
.ds-worldobject.ds-entity > .-background-shape {
  z-index: -1;
}
.ds-worldobject.ds-entity.ds-is-selected {
  outline: 2px solid hsl(215, 100%, 50%);
  outline: none;
}
.ds-worldobject.ds-entity.ds-is-selected > .-foreground-shape > svg > line, .ds-worldobject.ds-entity.ds-is-selected > .-foreground-shape > svg > path, .ds-worldobject.ds-entity.ds-is-selected > .-foreground-shape > svg > rect {
  stroke: hsl(215, 100%, 50%);
  stroke-width: 2px;
}
.ds-worldobject.ds-entity > .-magnets {
  display: contents;
}
.ds-worldobject.ds-entity > .-magnets .-magnet {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-worldobject.ds-entity > .-magnets .-magnet:hover::before, .ds-worldobject.ds-entity > .-magnets .-magnet:active::before {
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px hsl(215, 100%, 50%);
  content: "";
  background-color: hsla(215, 100%, 50%, 0.3);
}

.ds-entity-maximized {
  flex: 1;
  border-radius: 15px;
}
.ds-entity-maximized > .-header .-titlebar .-windowcontrols button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: hsl(350, 100%, 60%);
  color: white;
}

.ds-quickactionmenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
}
.ds-quickactionmenu .frosted-content {
  padding: 20px;
  box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ds-quickactionmenu .frosted-content-inner {
  padding: 10px;
  padding: 0;
  overflow: hidden;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 14.09477536px rgba(255, 255, 255, 0.99999966), 0px 0px 14.00768301px rgba(255, 255, 255, 0.99999982), 0px 0px 14.00778884px rgba(255, 255, 255, 0.99999999), 0px 0px 14.00827621px rgba(255, 255, 255, 0.99999989), 0px 0px 14.00894239px rgba(255, 255, 255, 0.99999989);
}
.ds-quickactionmenu .-heading {
  text-align: center;
  font-weight: 500;
  opacity: 0.8;
}
.ds-quickactionmenu .ds-searchable-list {
  width: 18.75rem;
  border-radius: 5px;
}
.ds-quickactionmenu .ds-searchable-list > .-prompt {
  padding-bottom: 5px;
}
.ds-quickactionmenu .ds-searchable-list > .-prompt input {
  width: 100%;
  appearance: none;
  border: none;
  padding: 0;
  outline: none;
  font-size: inherit;
  background-color: hsl(0, 0%, 95%);
  padding: 5px 7px;
  border-radius: 5px;
}
.ds-quickactionmenu .ds-searchable-list > .-prompt input:focus {
  outline: 1px solid hsl(0, 0%, 50%);
  outline-offset: -1px;
}
.ds-quickactionmenu .ds-searchable-list > .-actions > .-action {
  display: flex;
}
.ds-quickactionmenu .ds-searchable-list > .-actions > .-action > .-title {
  flex: 1;
}
.ds-quickactionmenu .ds-searchable-list > .-actions > .-action[aria-selected=true] {
  background-color: hsl(215, 100%, 50%);
  color: white;
}
.ds-quickactionmenu .ds-searchable-list > .-actions > .-action:first-child {
  border-radius: 5px 5px 0 0;
}
.ds-quickactionmenu .ds-searchable-list > .-actions > .-action:last-child {
  border-radius: 0 0 5px 5px;
}
.ds-quickactionmenu .ds-searchable-capsule-outer:has(.three-part) {
  border: 1px solid hsla(0, 0%, 0%, 0.15);
  background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.05));
  border-radius: 10px;
}
.ds-quickactionmenu .ds-searchable-capsule-outer:has(.three-part) textarea {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  background: none;
  outline: none;
  resize: none;
  border-top: 1px solid hsla(0, 0%, 0%, 0.15);
  padding: 8px 10px;
}

.ds-toolbar {
  user-select: none;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 4;
}
.ds-toolbar .ds-toolbar-inner {
  background: white;
  padding: 5px;
  box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 17.5px;
  pointer-events: auto;
  margin: 0 auto;
  width: fit-content;
  display: flex;
}
.ds-toolbar .ds-toolbar-section {
  display: flex;
}
.ds-toolbar .ds-toolbar-column {
  display: flex;
  flex-direction: column;
}
.ds-toolbar .ds-toolbar-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  border-radius: 15px;
  aspect-ratio: 1;
  width: 40px;
}
.ds-toolbar .ds-toolbar-button[aria-selected=true] {
  background: hsla(0, 0%, 0%, 0.1);
}
.ds-toolbar .ds-toolbar-button:hover {
  background: hsla(0, 0%, 0%, 0.1);
}
.ds-toolbar .ds-toolbar-button:active {
  background: hsla(0, 0%, 0%, 0.2);
}
.ds-toolbar .ds-toolbar-button[data-alt=display] {
  display: block;
}
.ds-toolbar .ds-toolbar-button[data-alt=hover] {
  display: none;
}
.ds-toolbar .ds-toolbar-inner:hover .ds-toolbar-button[data-alt=display] {
  display: none;
}
.ds-toolbar .ds-toolbar-inner:hover .ds-toolbar-button[data-alt=hover] {
  display: block;
}
.ds-toolbar .ds-toolbar-separator {
  width: 1px;
  background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2), hsla(0, 0%, 0%, 0));
  margin: 0 5px;
}

.three-part {
  display: flex;
  align-items: center;
}
.tabview .tabview-tabs {
  display: flex;
}
.ds-entity > .-header {
  min-height: 40px;
  border-bottom: 1px solid black;
}
.ds-entity .-action-signature {
  display: flex;
  gap: 4px;
}
.ds-entity .-action-signature > .-goes-to {
  padding-top: 30px;
}
.ds-entity .-action-signature > .-side {
  flex: 1;
}
.ds-entity .-action-signature > .-side > .-box {
  background-color: rgb(241, 241, 241);
}
.ds-entity .-action-signature > .-side > .-box:has(> .-box-content > textarea:focus) {
  background-color: rgb(235, 235, 235);
  outline: 1px solid hsl(0, 0%, 10%);
  outline-offset: -1px;
}
.ds-entity .-action-signature > .-side > .-box {
  border-radius: 10px;
}
.ds-entity .-action-signature > .-side > .-box:not(:last-child) {
  margin-bottom: 10px;
}
.ds-entity .-action-signature > .-side > .-box > .-box-header {
  pointer-events: none;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 4px;
}
.ds-entity .-action-signature > .-side > .-box > .-box-content textarea {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  background: none;
  outline: none;
  resize: none;
  padding-bottom: 8px;
  padding-inline: 8px;
  line-height: 1.4;
}
.ds-entity > .-footer .ds-entity-amend-prompt {
  padding-inline: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ds-entity > .-footer .ds-entity-amend-prompt .ds-entity-amend-textarea-container {
  display: flex;
  background-color: hsl(0, 0%, 93%);
  overflow: hidden;
  border-radius: 10px;
}
.ds-entity > .-footer .ds-entity-amend-prompt .ds-entity-amend-textarea-container button[type=submit] {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  margin-right: 5px;
  margin-top: 5px;
  border-radius: 999px;
  color: hsla(0, 0%, 0%, 0.8);
  outline: 1px solid hsla(0, 0%, 0%, 0.3);
  width: 24px;
  height: 24px;
}
.ds-entity > .-footer .ds-entity-amend-prompt .ds-entity-amend-textarea-container button[type=submit]:hover {
  outline-color: hsl(0, 0%, 0%);
}
.ds-entity > .-footer .ds-entity-amend-prompt .ds-entity-amend-textarea-container button[type=submit]:active {
  background-color: hsl(0, 0%, 0%);
  color: white;
}
.ds-entity > .-footer .ds-entity-amend-prompt .ds-entity-amend-textarea-container textarea {
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  background: none;
  outline: none;
  resize: none;
  padding: 5px 8px;
}

.ds-entity-world .ds-entity--page--navbar input {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  background: none;
  outline: none;
  resize: none;
  background-color: rgb(241, 241, 241);
  text-align: center;
  font-size: 15px;
}
.ds-entity-world .ds-entity-content .details {
  border-bottom: 1px solid black;
}
.ds-entity-world .ds-entity-content .details .details-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 10px;
  height: 30px;
}
.ds-entity-world .ds-entity-content .details .details-triangle {
  background-image: url("data:image/svg+xml,%3csvg%20width='12'%20height='10'%20viewBox='0%200%2012%2010'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M5.62915%209.75L-1.52588e-05%200L11.2583%200L5.62915%209.75Z'%20fill='black'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  transform-origin: 50% 50%;
  transition: transform 200ms ease;
}
.ds-entity-world .ds-entity-content .details .details-label {
  font-weight: 600;
  font-size: 16px;
}
.ds-entity-world .ds-entity-content .details .details-body {
  padding-inline: 10px;
}
.ds-entity-world .ds-entity-content .details[aria-expanded=false] .details-triangle {
  transform: rotate(-90deg);
}
.ds-entity-world .ds-entity-content .ds-entity-description-details {
  background-color: hsl(53, 100%, 92%);
}
.ds-entity-world .ds-entity-content .ds-entity-main-prompt {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  background: none;
  outline: none;
  resize: none;
  padding: 5px;
  font-size: 15px;
  line-height: 1.4;
  background-color: hsl(53, 100%, 92%);
  display: flex;
  flex-direction: column;
}
.ds-entity-world .ds-entity-content .ds-entity-main-prompt > .-see-more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  place-self: center;
  font-weight: 500;
}
.ds-entity-world .ds-entity-content .ds-entity-main-prompt > .-see-more:hover {
  background: hsla(0, 0%, 0%, 0.1);
}
.ds-entity-world .ds-entity-content .ds-entity-main-prompt > .-see-more:active {
  background: black;
  color: white;
}
.ds-entity-world .ds-entity-content .ds-entity-main-prompt > .-see-more {
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 10px;
}

.ds-entity[data-entity-type=Page] .ds-entity-content iframe, .ds-entity[data-entity-type=Component] .ds-entity-content iframe {
  border: none;
  display: block;
  pointer-events: none;
}

.ds-entity[data-entity-type=Form] iframe {
  border: none;
  display: block;
  pointer-events: none;
  pointer-events: none;
}

.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body {
  display: grid;
  grid-template-columns: max-content auto;
  column-gap: 4px;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-row {
  display: contents;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-row > .-field-type {
  justify-items: right;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-row > .-field-type > .-field-type-box {
  width: fit-content;
  align-self: bottom;
  padding-inline: 4px;
  outline: 2px solid black;
  outline-offset: -2px;
  font-weight: 500;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-row > .-field-label > .-field-label-tags > .-field-label-tag {
  border-radius: 999px;
  border: 1px solid black;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-expanded-content {
  grid-column: 2/2;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-expanded-content .segcontrol {
  width: fit-content;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-expanded-content .segcontrol button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  font-size: inherit;
  border: 1px solid black;
  border-style: solid solid solid none;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-expanded-content .segcontrol button:first-child {
  border-radius: 999px 0 0 999px;
  border-left-style: solid;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-expanded-content .segcontrol button:last-child {
  border-radius: 0 999px 999px 0;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-expanded-content .segcontrol button {
  background: white;
  color: black;
}
.ds-entity[data-entity-type=Table] .ds-entity-table--schema .details-body > .-field-expanded-content .segcontrol button[aria-selected=true] {
  background: black;
  color: white;
}

/*# sourceMappingURL=designer.css.map *//*# sourceMappingURL=designer_visual.css.map */.skcanvas {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.skcanvas *:not(.sklayer) {
  pointer-events: none;
}

.skinspector {
  max-width: 300px;
  overflow-y: scroll;
  height: 100vh;
}

.skinspector .segcontrol {
  display: flex;
}
.skinspector .segcontrol .seg {
  flex: 1;
}

.skinspector .gridcompass {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
}
.skinspector .gridcompass :nth-child(1) {
  grid-row: 1;
  grid-column: 1/-1;
}
.skinspector .gridcompass :nth-child(2) {
  grid-row: 2;
  grid-column: 2;
}
.skinspector .gridcompass :nth-child(3) {
  grid-row: 3;
  grid-column: 1/-1;
}
.skinspector .gridcompass :nth-child(4) {
  grid-row: 2;
  grid-column: 1;
}
.skinspector .gridcompass :nth-child(1), .skinspector .gridcompass :nth-child(3) {
  justify-self: center;
}

.skinspector .grid2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.skinspector .fillrow {
  display: flex;
}/*# sourceMappingURL=sketch.css.map */#MusicQuiz .q h1 {
  text-align: center;
  font-size: calc(60 * 100vmin / 792);
  margin-block: calc(60 * 100vmin / 792);
}
#MusicQuiz .q .kb {
  margin: 0 auto;
}
#MusicQuiz .kb {
  --scale: 3px;
  position: relative;
  width: calc(164 * var(--scale));
  height: calc(135 * var(--scale));
  box-sizing: border-box;
}
#MusicQuiz .kb .kb-tops, #MusicQuiz .kb .kb-bottoms {
  position: absolute;
  inset: 0;
  display: flex;
}
#MusicQuiz .kb .kb-tops {
  bottom: calc(50 * var(--scale));
}
#MusicQuiz .kb .kb-top, #MusicQuiz .kb .kb-bottom {
  flex: 1;
}
#MusicQuiz .kb .kb-top:not([data-black]) {
  background-color: transparent;
  pointer-events: none;
}
#MusicQuiz .kb .kb-top[data-black] {
  background-color: black;
  outline: 1px solid black;
}
#MusicQuiz .kb .kb-bottom {
  border-right: 1px solid black;
}/*# sourceMappingURL=musicquiz.css.map */