.app-version-prompt[data-v-cdf0b862] {
  position: fixed;
  z-index: 4000;
  top: 80px;
  right: 24px;
  width: min(420px, 100vw - 32px);
}
.app-version-prompt__surface[data-v-cdf0b862] {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
}
.app-version-prompt__icon[data-v-cdf0b862] {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
}
.app-version-prompt__icon--update[data-v-cdf0b862] {
  background: #e8f7fb;
  color: #0f6b7a;
}
.app-version-prompt__icon--chunk[data-v-cdf0b862] {
  background: #fff4e5;
  color: #b45309;
}
.app-version-prompt__content[data-v-cdf0b862] {
  min-width: 0;
  padding-right: 32px;
  padding-bottom: 44px;
}
.app-version-prompt__title[data-v-cdf0b862] {
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.app-version-prompt__message[data-v-cdf0b862] {
  margin-top: 3px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
}
.app-version-prompt__version[data-v-cdf0b862] {
  margin-top: 6px;
  color: #6b7280;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.3;
}
.app-version-prompt__actions[data-v-cdf0b862] {
  position: absolute;
  right: 14px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.app-version-prompt__close[data-v-cdf0b862] {
  position: absolute;
  top: 8px;
  right: 8px;
}
.app-version-prompt__reload[data-v-cdf0b862] {
  text-transform: none;
}
.app-version-prompt-enter-active[data-v-cdf0b862],
.app-version-prompt-leave-active[data-v-cdf0b862] {
  transition: opacity 160ms ease, transform 160ms ease;
}
.app-version-prompt-enter-from[data-v-cdf0b862],
.app-version-prompt-leave-to[data-v-cdf0b862] {
  opacity: 0;
  transform: translateY(-8px);
}
@media (max-width: 640px) {
.app-version-prompt[data-v-cdf0b862] {
    top: 72px;
    right: 16px;
    left: 16px;
    width: auto;
}
.app-version-prompt__content[data-v-cdf0b862] {
    padding-right: 28px;
}
}.v-btn.v-btn--icon.rect-btn {
  --v-btn-height: 40px;
  --v-btn-size: 40px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 4px;
}

html,
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  color: rgb(var(--v-theme-primary));
  cursor: pointer;
}
a:active, a:hover {
  color: inherit;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 16px;
}

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

.text-underline {
  text-decoration: underline;
}

.text-decoration-none {
  cursor: pointer;
  text-decoration: none;
}

.scroll-thin {
  scrollbar-width: thin;
  overflow-y: auto;
  scrollbar-color: #ccc transparent;
}
.scroll-thin::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.scroll-thin::-webkit-scrollbar-track {
  background: none;
}
.scroll-thin::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 1px;
}

.md-code {
  font-family: "Fira Code", monospace;
  background-color: rgba(var(--v-theme-primary), 0.16);
  padding: 2px 4px;
  border-radius: 4px;
}

.row {
  display: flex;
}

.row.align-center {
  align-items: center;
}

.row.justify-center {
  justify-content: center;
}

.row > .col {
  flex: 1;
}

.row > .col-auto {
  flex: none;
}